Compare commits

...

2 Commits

Author SHA1 Message Date
Jeff Emmett 2b75651655 Merge branch 'dev'
CI/CD / deploy (push) Failing after 2m6s Details
2026-04-16 14:56:12 -04:00
Jeff Emmett c885773844 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>
2026-04-16 14:56:05 -04:00
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;