Show home icon only on mobile with white background

- Home icon only appears on narrow screens (≤850px), not desktop
- Added white circular background with subtle shadow for readability
- Icon is larger (28px + padding) for easier touch targeting

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Anton Volnuhin 2026-02-01 18:36:50 +03:00
parent e29ff21747
commit abc6ef2a9d

View File

@ -179,24 +179,24 @@ body {
.center-home {
display: none;
justify-content: center;
margin-bottom: 4px;
pointer-events: auto;
cursor: pointer;
}
.center-home svg {
width: 20px;
height: 20px;
color: #666;
transition: color 0.2s;
width: 28px;
height: 28px;
color: #333;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
padding: 6px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
transition: all 0.2s;
}
.center-home:hover svg {
color: #000;
}
.center-label.drilled-down .center-home {
display: flex;
background: #fff;
}
.center-amount {
@ -389,7 +389,13 @@ body {
/* Still show home icon on narrow screens when drilled down */
.center-label.drilled-down {
display: block;
display: flex;
align-items: center;
justify-content: center;
}
.center-label.drilled-down .center-home {
display: flex;
}
.center-label.drilled-down .center-month,