From 5f58a0955ac8c6ffa16576f8361d1b86c33e85a2 Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Tue, 15 Sep 2026 23:29:18 -0400 Subject: [PATCH] A notice taller than the screen scrolls inside its frame Preferences on a phone ran off the bottom with no way to reach the rest. Every notice now caps at the window's height and scrolls within. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01Jm2auWk6RP71CjaAb4FMoG --- packages/web/src/App.svelte | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/web/src/App.svelte b/packages/web/src/App.svelte index a9f6d21..94bd688 100644 --- a/packages/web/src/App.svelte +++ b/packages/web/src/App.svelte @@ -4098,6 +4098,12 @@ gap: 0.8rem; max-width: min(22rem, 92vw); text-align: center; + /* A notice taller than the screen — preferences on a phone — scrolls + * inside its frame rather than running off the bottom uncatchable. */ + max-height: calc(100dvh - 2rem); + overflow-y: auto; + -webkit-overflow-scrolling: touch; + box-sizing: border-box; } .attack-headline { font-family: "Oswald", sans-serif;