Reasonalbe max heights

Use all the available space above the search/trays footer. On mobile use
the full viewport height
This commit is contained in:
Jason Zimdars
2025-11-24 16:16:09 -06:00
parent ed19e6d494
commit 4e14c0df27
+5
View File
@@ -75,10 +75,15 @@
0 0.8em 0.8em oklch(var(--lch-blue-medium) / 5%);
grid-template-rows: auto 1fr auto;
gap: var(--nav-section-gap);
max-block-size: calc(100vh - var(--block-space) - var(--footer-height));
overflow: hidden;
padding-block-end: 0;
scrollbar-gutter: stable both-edges;
z-index: var(--z-nav);
@media (max-height: 668px) {
max-block-size: calc(100vh - var(--block-space));
}
}
.nav__scroll-container {