From 66e04caf21c9aa452aafc6a7cc7e49f906374a82 Mon Sep 17 00:00:00 2001 From: gsinghpal Date: Wed, 6 May 2026 22:26:00 -0400 Subject: [PATCH] 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) --- fusion_planning/static/src/css/portal_schedule.css | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/fusion_planning/static/src/css/portal_schedule.css b/fusion_planning/static/src/css/portal_schedule.css index 08b5d0c7..c0945cd1 100644 --- a/fusion_planning/static/src/css/portal_schedule.css +++ b/fusion_planning/static/src/css/portal_schedule.css @@ -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 ---- */