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).
This commit is contained in:
parent
beac893dd0
commit
39e70670b5
@ -104,7 +104,7 @@ body {
|
|||||||
* Disable pull-to-refresh on mobile that conflicts with scrolling the message list.
|
* Disable pull-to-refresh on mobile that conflicts with scrolling the message list.
|
||||||
* See http://stackoverflow.com/a/29313685/1935861
|
* See http://stackoverflow.com/a/29313685/1935861
|
||||||
*/
|
*/
|
||||||
overflow-y: hidden;
|
overflow: hidden; /* iOS Safari requires overflow rather than overflow-y */
|
||||||
}
|
}
|
||||||
|
|
||||||
a,
|
a,
|
||||||
|
Loading…
Reference in New Issue
Block a user