Created
April 22, 2017 10:12
-
-
Save andreasvirkus/d837a425ecc1b986bfdab6532749f6e5 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
/** | |
* Fixes the content shift caused by disappearing/appearing scrollbars | |
* | |
* Inspired by https://aykevl.nl/2014/09/fix-jumping-scrollbar | |
*/ | |
@media screen and (min-width: 25em) { | |
html { | |
margin-left: calc(100vw - 100%); | |
margin-right: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment