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) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-06-22 02:52:09 -07:00
parent e467394dc9
commit f5ace75c92
2 changed files with 7 additions and 1 deletions

View File

@@ -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;

View File

@@ -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 {