Raise mobile bottom bar z-index and shrink by 25%

Bumps z-index from 500 to 900 so the bottom bar stays above side panel
drawers (600) but below card animation overlays (1000). Scales the bar
to 75% in mobile portrait to reduce visual footprint.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken 2026-02-22 13:01:46 -05:00
parent 0dbb2d13ed
commit 1678077c53

View File

@ -5281,7 +5281,9 @@ body.mobile-portrait #mobile-bottom-bar {
right: 0; right: 0;
padding: 6px 12px; padding: 6px 12px;
padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px)); padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
z-index: 500; z-index: 900;
transform: scale(0.75);
transform-origin: bottom center;
} }
/* Hole indicator — pinned left with pill background */ /* Hole indicator — pinned left with pill background */