From b583c8489dd31a717bdebefa2d87ec00750ed0c3 Mon Sep 17 00:00:00 2001 From: Marcel Date: Mon, 16 Mar 2026 16:13:24 +0100 Subject: [PATCH] fix: disable overscroll bounce to keep header stationary Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/routes/layout.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/routes/layout.css b/frontend/src/routes/layout.css index 6f46ff48..a49457d0 100644 --- a/frontend/src/routes/layout.css +++ b/frontend/src/routes/layout.css @@ -33,6 +33,10 @@ /* Apply base styles directly to HTML elements */ @layer base { + html { + overscroll-behavior: none; + } + body { /* Use the theme variable directly using standard CSS syntax */ background-color: var(--color-brand-sand);