From 7f19e1188543e67884efd4dbb813c897349edf2a Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Thu, 11 Jun 2026 14:31:38 -0400 Subject: [PATCH] Fix scrolling --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 249d662..38a12c6 100644 --- a/style.css +++ b/style.css @@ -407,6 +407,10 @@ fieldset.active .fs-body { display: contents; } /* ── Responsive ───────────────────────────────────────────── */ @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 { flex-wrap: wrap; } header h1 { order: 1; flex: 1; }