Fix scrolling

This commit is contained in:
Ian Keane 2026-06-11 14:31:38 -04:00
parent 3810d1c05c
commit 7f19e11885

View file

@ -407,6 +407,10 @@ fieldset.active .fs-body { display: contents; }
/* ── Responsive ───────────────────────────────────────────── */ /* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) { @media (max-width: 600px) {
/* Fixed viewport so header and footer stay put while main scrolls */
body { height: 100dvh; overflow: hidden; }
main { overflow-y: auto; }
/* Header: h1 + actions on line 1, search full-width on line 2 */ /* Header: h1 + actions on line 1, search full-width on line 2 */
header { flex-wrap: wrap; } header { flex-wrap: wrap; }
header h1 { order: 1; flex: 1; } header h1 { order: 1; flex: 1; }