fix(fusion_planning): keep portal nav items grouped at center

Previous CSS used flex:1 which stretched the 4 nav items across the
full viewport width, leaving big gaps between them on wider screens.
Reverted to the original centered layout and tightened per-item padding
from 24px to 16px so all 4 fit cleanly without stretching.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsinghpal
2026-05-06 22:26:00 -04:00
parent 19c1cbdf15
commit 66e04caf21

View File

@@ -2,15 +2,9 @@
* Inherits Fusion Clock dark-theme tokens (--fclk-card, --fclk-green, etc.)
*/
/* ---- 4-tab nav fit ---- */
.fclk-nav-bar {
justify-content: space-around !important;
}
/* ---- 4-tab nav fit (keep items grouped at center, just tighter padding) ---- */
.fclk-nav-item {
padding: 8px 12px !important;
flex: 1;
max-width: 96px;
padding: 8px 16px !important;
}
/* ---- Next Shift hero card ---- */