From f5ace75c929e26be62ed5deb754e0d5c092dbeee Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Mon, 22 Jun 2026 02:52:09 -0700 Subject: [PATCH] fix(dashboard): gm dock tabs shrink to icon width; Skills content padding - gm: reset the base .gm-nav-item width:100% in the icon-only container query so each tab is icon-sized and many fit horizontally (was one full-width tab at a time). - Skills view content no longer repeats the ViewHeader's top padding (removes the doubled gap under the header). Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/dashboard/app/components/ScriptsModal.css | 2 ++ packages/dashboard/app/components/SkillsView.css | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/dashboard/app/components/ScriptsModal.css b/packages/dashboard/app/components/ScriptsModal.css index 15f900967e..7b41076a1c 100644 --- a/packages/dashboard/app/components/ScriptsModal.css +++ b/packages/dashboard/app/components/ScriptsModal.css @@ -2005,7 +2005,9 @@ The embedded Git Manager adapts to its container width, not the viewport, so the } .gm-modal--embedded .gm-nav-item { + /* width:auto resets the base .gm-nav-item width:100% which otherwise made each tab span the whole strip (one wide tab at a time). */ flex: 0 0 auto; + width: auto; align-items: center; justify-content: center; gap: 0; diff --git a/packages/dashboard/app/components/SkillsView.css b/packages/dashboard/app/components/SkillsView.css index 46c779ca23..a7392d3470 100644 --- a/packages/dashboard/app/components/SkillsView.css +++ b/packages/dashboard/app/components/SkillsView.css @@ -38,10 +38,14 @@ gap: var(--space-sm); } +/* +FNXC:Navigation 2026-06-22-02:00: +The shared ViewHeader already supplies the top + side --space-lg padding, so the content area must NOT repeat the top padding (that doubled the gap under the header). Side + bottom padding only, aligned with the header. +*/ .skills-view-content { flex: 1; overflow-y: auto; - padding: var(--space-lg); + padding: 0 var(--space-lg) var(--space-lg); } .skills-view-section {