fix(web): use overflow-x auto on topbar pills to avoid silent clipping

overflow: hidden silently clips pills at intermediate viewport widths.
Switching to overflow-x: auto keeps all pills reachable via scroll
while still preventing vertical stacking.

Closes #1920

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Aditi Chauhan 2026-05-24 11:03:34 +05:30
parent a6c418c098
commit 538952a095
1 changed files with 1 additions and 1 deletions

View File

@ -7607,7 +7607,7 @@ html.light .xterm .xterm-viewport:hover::-webkit-scrollbar-thumb:active {
align-items: center;
gap: 4px;
flex-wrap: nowrap;
overflow: hidden;
overflow-x: auto;
}
/* Project name + pills: inline on desktop, stacked column on mobile */