fix(shell): move subnav/tabbar below tab row (top: 128px)

The subnav and tabbar were sticking at top: 92px which overlapped
with the tab row (header 56px + tab row ~36px = 92px). Bumped to
128px so they sit cleanly below the tab row.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-12 19:39:24 -07:00
parent 5f63e51a2f
commit 81fb92284b
1 changed files with 2 additions and 2 deletions

View File

@ -1327,7 +1327,7 @@ const SUBNAV_CSS = `
background: var(--rs-bg-surface);
scrollbar-width: none;
position: sticky;
top: 92px;
top: 128px;
z-index: 100;
margin-bottom: 4px;
}
@ -1416,7 +1416,7 @@ const TABBAR_CSS = `
background: var(--rs-bg-surface);
scrollbar-width: none;
position: sticky;
top: 92px;
top: 128px;
z-index: 100;
}
.rapp-tabbar::-webkit-scrollbar { display: none; }