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 {