From f2af73ac69193ccb818f3b9fbb2f7237b3d072a2 Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Sat, 6 Jun 2026 19:36:22 +0530 Subject: [PATCH] feat: prevent pull to refresh on phones - disable y overscroll --- src/index.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.css b/src/index.css index 036f42e..be63c4d 100644 --- a/src/index.css +++ b/src/index.css @@ -44,6 +44,7 @@ -moz-osx-font-smoothing: grayscale; transition: background-color 0.2s ease, color 0.2s ease; touch-action: pan-x pan-y; + overscroll-behavior-y: contain; } html.dark { @@ -55,6 +56,7 @@ background-color: #F3EDE4; transition: background-color 0.2s ease, color 0.2s ease; touch-action: pan-x pan-y; + overscroll-behavior-y: contain; } html.dark body {