Update bootstrap

This commit is contained in:
ThePetrovich 2026-08-23 15:26:38 +08:00
parent f18276ab01
commit fafd9320ab
2 changed files with 15 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -590,8 +590,22 @@ dl:last-child > dd:last-child {
border: none !important; border: none !important;
} }
/* The bar grows here (the brand block keeps its height and the padding is
added around it), and --navbar-height has to grow with it: it is what
every in-page sticky bar offsets itself by, and a stale 44px slid ops's
pass console header up under the navbar on tablet widths.
61px is the same arithmetic that produces 44px above -- 34px logo + the
brand block's .3125rem padding either side -- plus .5rem of bar padding
either side and the 1px bottom border. min-height, not height, so a taller
brand overflows the offset rather than being clipped by it. */
:root {
--navbar-height: 61px;
}
.custom-navbar { .custom-navbar {
height: auto; height: auto;
min-height: var(--navbar-height);
padding-top: 0.5rem; padding-top: 0.5rem;
padding-bottom: 0.5rem; padding-bottom: 0.5rem;
} }