From c9867845b4ed755679793a25c54801d675e97a1b Mon Sep 17 00:00:00 2001 From: matteoscrugli Date: Tue, 23 Dec 2025 21:50:03 +0100 Subject: [PATCH] Disable overscroll bounce effect on all pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add overscroll-behavior: none to html and body elements to prevent rubber-band scrolling that shows extra space. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/src/styles/theme/index.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/styles/theme/index.css b/frontend/src/styles/theme/index.css index efef570..52dfeb1 100644 --- a/frontend/src/styles/theme/index.css +++ b/frontend/src/styles/theme/index.css @@ -21,6 +21,7 @@ html { color-scheme: light dark; + overscroll-behavior: none; } body { @@ -36,6 +37,7 @@ body { user-select: none; -webkit-user-select: none; overflow-x: hidden; + overscroll-behavior: none; accent-color: var(--color-accent); }