From 2e597505d2f702f909a7a2b83c787c63a4fa1e9c Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Tue, 29 Jul 2025 23:36:43 -0300 Subject: [PATCH] Prevents the pull-to-refresh action on android devices --- client/src/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/style.css b/client/src/style.css index d401bf5a12..b2b64a583b 100644 --- a/client/src/style.css +++ b/client/src/style.css @@ -2,6 +2,11 @@ @tailwind components; @tailwind utilities; +html, body { + /* Prevents the pull-to-refresh action */ + overscroll-behavior-y: contain; +} + /* Custom Variables */ :root { --white: #fff;