fix(shell): move tab bar up 2px more, reduce left padding for full-width span

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-04-16 14:56:05 -04:00
parent c5a58e1908
commit c885773844
2 changed files with 5 additions and 4 deletions

View File

@ -1476,7 +1476,7 @@ const STYLES = `
align-items: center;
gap: 0;
min-height: 36px;
padding: 0 8px;
padding: 0 4px;
overflow: visible;
}

View File

@ -73,7 +73,7 @@ body.rspace-banner-visible .rstack-header {
top: 36px;
}
body.rspace-banner-visible .rstack-tab-row {
top: 91px; /* 36px banner + 56px header - 1px overlap */
top: 89px; /* 36px banner + 56px header - 3px overlap */
}
body.rspace-banner-visible #app {
padding-top: 128px; /* 36px banner + 92px normal */
@ -209,7 +209,7 @@ body.rspace-banner-visible #app {
.rstack-tab-row {
position: fixed;
top: 55px; /* overlap header border by 1px to close gap */
top: 53px; /* overlap header bottom border to close gap */
left: 0;
right: 0;
z-index: 9998;
@ -219,12 +219,13 @@ body.rspace-banner-visible #app {
background: var(--rs-glass-bg);
display: flex;
align-items: center;
padding: 0; /* no horizontal padding — span full width */
}
/* ── Main content area ── */
#app {
padding-top: 91px; /* Below fixed header (56px) + tab row (36px) - 1px overlap */
padding-top: 89px; /* Below fixed header (56px) + tab row (36px) - 3px overlap */
height: 100vh;
display: flex;
flex-direction: column;