From f4e87d4c25d52298ab6bc39fea8f93c7d50b9f6d Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Tue, 17 Feb 2026 19:39:32 -0800 Subject: [PATCH] Update apps/ui/src/styles/global.css Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- apps/ui/src/styles/global.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/ui/src/styles/global.css b/apps/ui/src/styles/global.css index 3b003624..6775d2b9 100644 --- a/apps/ui/src/styles/global.css +++ b/apps/ui/src/styles/global.css @@ -389,13 +389,20 @@ body { overflow: hidden; overscroll-behavior: none; - -webkit-overflow-scrolling: touch; - position: fixed; width: 100%; height: 100%; height: 100dvh; } + /* iOS Safari: position:fixed on body prevents pull-to-refresh and overscroll bounce. + Scoped to touch devices only to avoid breaking desktop browser behaviours. */ + `@media` (hover: none) and (pointer: coarse) { + html, + body { + position: fixed; + } + } + #app { height: 100%; height: 100dvh;