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

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 {