From c564fafe73845b50907a0527ef20a032b60e5499 Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Fri, 10 Jul 2026 08:20:21 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20settings=20page=20not=20scrollable=20?= =?UTF-8?q?=E2=80=94=20restore=20html/body=20overflow=20override?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit static/style.css pins html/body to height:100% with overflow:hidden for the dashboard pages; the redesign dropped the counter-override the old template carried. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01NfPpSpccTWBfZg1FTveyaU --- hbd/server/templates/settings.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hbd/server/templates/settings.html b/hbd/server/templates/settings.html index a51838c..fb2987d 100644 --- a/hbd/server/templates/settings.html +++ b/hbd/server/templates/settings.html @@ -42,6 +42,9 @@ --st-badge-mgr: #1b3350; --st-badge-mgr-ink: #90caf9; } + /* static/style.css pins html/body to 100% height with overflow:hidden + for the dashboard pages — this page scrolls normally */ + html, body { height: auto; overflow: visible; } body { background: var(--st-paper); padding: 60px 0 0; } /* ── sticky toolbar under the site nav ── */