From 02b8b37b4c60ffe37d214faccfad49af3d649f46 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 13 Sep 2021 13:11:25 +0200 Subject: [PATCH] disable native scroll anchoring as it interferes with our impl --- src/platform/web/ui/css/timeline.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/platform/web/ui/css/timeline.css b/src/platform/web/ui/css/timeline.css index 97582990..29e24bde 100644 --- a/src/platform/web/ui/css/timeline.css +++ b/src/platform/web/ui/css/timeline.css @@ -17,7 +17,8 @@ limitations under the License. .RoomView_body > .Timeline { overflow-y: auto; - overscroll-behavior: contain; + overscroll-behavior-y: contain; + overflow-anchor: none; padding: 0; margin: 0; /* need to read the offsetTop of tiles relative to this element in TimelineView */