From 92dd5b1bbe792561ae2c576ca434e58aadaa28f1 Mon Sep 17 00:00:00 2001 From: isYangs Date: Thu, 2 Apr 2026 09:54:23 +0800 Subject: [PATCH] fix: disable macOS overscroll bounce --- src/app/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 9bbe94f..eab6a05 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -161,6 +161,10 @@ * { @apply border-border outline-ring/50; } + html, + body { + overscroll-behavior: none; + } body { @apply bg-background text-foreground; }