Merge branch 'dev'

This commit is contained in:
Jeff Emmett 2026-03-12 22:44:43 -07:00
commit 6cd1066e57
1 changed files with 4 additions and 3 deletions

View File

@ -1327,9 +1327,8 @@ const SUBNAV_CSS = `
background: var(--rs-bg-surface); background: var(--rs-bg-surface);
scrollbar-width: none; scrollbar-width: none;
position: sticky; position: sticky;
top: 128px; top: 92px;
z-index: 100; z-index: 100;
margin-bottom: 4px;
} }
.rapp-subnav::-webkit-scrollbar { display: none; } .rapp-subnav::-webkit-scrollbar { display: none; }
@media (max-width: 640px) { @media (max-width: 640px) {
@ -1416,10 +1415,11 @@ const TABBAR_CSS = `
background: var(--rs-bg-surface); background: var(--rs-bg-surface);
scrollbar-width: none; scrollbar-width: none;
position: sticky; position: sticky;
top: 128px; top: 92px;
z-index: 100; z-index: 100;
} }
.rapp-tabbar::-webkit-scrollbar { display: none; } .rapp-tabbar::-webkit-scrollbar { display: none; }
.rapp-subnav + .rapp-tabbar { top: 129px; }
@media (max-width: 640px) { @media (max-width: 640px) {
.rapp-tabbar { .rapp-tabbar {
position: relative; position: relative;
@ -1427,6 +1427,7 @@ const TABBAR_CSS = `
padding: 0.25rem 0.75rem; padding: 0.25rem 0.75rem;
gap: 0.25rem; gap: 0.25rem;
} }
.rapp-subnav + .rapp-tabbar { top: auto; }
} }
`; `;