From 39e70670b520d8ce52bfb85305d4d9f2c105052f Mon Sep 17 00:00:00 2001 From: Steven Engler Date: Mon, 23 Mar 2020 15:15:30 -0400 Subject: [PATCH] Fix body overscroll and overflow on iOS Safari In order to prevent scrolling past the edges of the body (overscroll) in Safari on iOS, the overflow must be hidden (not only overflow-y). --- client/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/css/style.css b/client/css/style.css index f1cb95e1..2e54c2c9 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -104,7 +104,7 @@ body { * Disable pull-to-refresh on mobile that conflicts with scrolling the message list. * See http://stackoverflow.com/a/29313685/1935861 */ - overflow-y: hidden; + overflow: hidden; /* iOS Safari requires overflow rather than overflow-y */ } a,