Merge pull request #343 from orangemug/fix/disable-bounce-scroll

Prevent bounce scroll on <body/>
This commit is contained in:
Orange Mug 2018-07-15 22:11:18 +01:00 committed by GitHub
commit 115ce3305d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,11 @@ html {
box-sizing: border-box;
}
body {
// The UI is 100% height so prevent bounce scroll on OSX
overflow: hidden;
}
*,
*::before,
*::after {