🐛 Fix the top bar underline offset in the Settings UI

This commit is contained in:
Daniel Dudzic 2025-08-27 13:59:31 -07:00
parent f6b26a33ac
commit 3121791f79
No known key found for this signature in database
GPG key ID: 31B40D33E3465483

View file

@ -7,7 +7,7 @@ $margin_bottom: 48px;
--color-disabled: #CCC;
--navbar-height: 40px;
--navbar-vertical-padding: 10px;
--subnavigation-height: 40px;
--subnavigation-height: 38px;
// Styling.
position: sticky;
@ -93,7 +93,6 @@ $margin_bottom: 48px;
}
.ppcp--top-sub-navigation {
height: var(--subnavigation-height);
margin: 0;
padding: 0;
@ -111,6 +110,12 @@ $margin_bottom: 48px;
}
}
@media screen and (max-width: 782px) {
.ppcp--top-sub-navigation {
height: var(--subnavigation-height);
}
}
@media screen and (max-width: 782px) {
padding: 10px 12px;