Last active
June 9, 2016 15:10
-
-
Save robpataki/bfa684b0d72bb94ca5f9c21d2f3c662c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Prevent overflow scroll bouncing on mac */ | |
/* http://stackoverflow.com/questions/12046315/prevent-overscrolling-of-web-page */ | |
html { | |
overflow: hidden; | |
height: 100%; | |
} | |
body { | |
height: 100%; | |
overflow: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment