fix(ui): bump subnav sticky top to avoid header overlap
Increase .rapp-subnav top from 92px to 93px so pill buttons don't clip under the fixed header + tab-row border. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c2d7e8b238
commit
32be9d7b94
|
|
@ -1856,7 +1856,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: 93px;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
.rapp-subnav::-webkit-scrollbar { display: none; }
|
.rapp-subnav::-webkit-scrollbar { display: none; }
|
||||||
|
|
@ -1956,7 +1956,7 @@ const TABBAR_CSS = `
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
.rapp-tabbar::-webkit-scrollbar { display: none; }
|
.rapp-tabbar::-webkit-scrollbar { display: none; }
|
||||||
.rapp-subnav + .rapp-tabbar { top: 129px; }
|
.rapp-subnav + .rapp-tabbar { top: 130px; }
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 640px) {
|
||||||
.rapp-tabbar {
|
.rapp-tabbar {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue