Disable overscroll bounce effect on all pages

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 <noreply@anthropic.com>
This commit is contained in:
2025-12-23 21:50:03 +01:00
parent 500d038ed0
commit c9867845b4

View File

@@ -21,6 +21,7 @@
html { html {
color-scheme: light dark; color-scheme: light dark;
overscroll-behavior: none;
} }
body { body {
@@ -36,6 +37,7 @@ body {
user-select: none; user-select: none;
-webkit-user-select: none; -webkit-user-select: none;
overflow-x: hidden; overflow-x: hidden;
overscroll-behavior: none;
accent-color: var(--color-accent); accent-color: var(--color-accent);
} }