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:
parent
5f63e51a2f
commit
81fb92284b
|
|
@ -1327,7 +1327,7 @@ const SUBNAV_CSS = `
|
||||||
background: var(--rs-bg-surface);
|
background: var(--rs-bg-surface);
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 92px;
|
top: 128px;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
@ -1416,7 +1416,7 @@ const TABBAR_CSS = `
|
||||||
background: var(--rs-bg-surface);
|
background: var(--rs-bg-surface);
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 92px;
|
top: 128px;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
.rapp-tabbar::-webkit-scrollbar { display: none; }
|
.rapp-tabbar::-webkit-scrollbar { display: none; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue