From ccfd9afc3bc08a418ebda686873c359ec9f9d3c6 Mon Sep 17 00:00:00 2001 From: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Date: Tue, 7 Apr 2026 02:26:50 -0700 Subject: [PATCH 1/2] fix: prevent iOS overscroll on root element Add overscroll-behavior: none to the html element to prevent the elastic bounce-back scroll effect on iOS that competes with the timeline scroll. Fixes #500 --- src/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.css b/src/index.css index ceab92d93..cde45ce4c 100755 --- a/src/index.css +++ b/src/index.css @@ -78,6 +78,7 @@ html { height: 100%; overflow: hidden; + overscroll-behavior: none; } body { From fb8450ec8b698ecb6ead09938898da68764e58cf Mon Sep 17 00:00:00 2001 From: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Date: Tue, 7 Apr 2026 12:25:37 -0700 Subject: [PATCH 2/2] docs: add changeset for iOS overscroll fix --- .changeset/fix-ios-overscroll.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-ios-overscroll.md diff --git a/.changeset/fix-ios-overscroll.md b/.changeset/fix-ios-overscroll.md new file mode 100644 index 000000000..02b02f246 --- /dev/null +++ b/.changeset/fix-ios-overscroll.md @@ -0,0 +1,5 @@ +--- +default: patch +--- + +Fix iOS elastic bounce-back overscroll on the root element.