From e53f0efde94cd69e07db3e78d41a2c618b4ffd4a Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 7 Aug 2023 16:11:11 +0800 Subject: [PATCH] Test fix: Prevent pull-to-refresh on Chrome PWA --- src/index.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/index.css b/src/index.css index f3ca4399..5c7d0ad7 100644 --- a/src/index.css +++ b/src/index.css @@ -115,6 +115,14 @@ body { overflow-wrap: break-word; } +/* Prevent pull-to-refresh on Chrome PWA */ +@media (display-mode: standalone) { + html, + body { + overscroll-behavior-y: none; + } +} + a { color: var(--link-color); text-decoration-color: var(--link-faded-color);