From a3f02df539a0da004c62ac12e581334dfddf5dfc Mon Sep 17 00:00:00 2001 From: codytseng Date: Sun, 2 Nov 2025 12:42:29 +0800 Subject: [PATCH] feat: prevent vertical overscroll behavior on body and html elements --- src/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.css b/src/index.css index e504724b..e2fc8a2a 100644 --- a/src/index.css +++ b/src/index.css @@ -33,6 +33,11 @@ user-select: none; } + body, + html { + overscroll-behavior-y: none; + } + .clickable { cursor: pointer; transition: background-color 0.2s ease;