Last active
July 13, 2023 18:45
-
-
Save robertbiswas/f5e61dae932a408f0aacef21bc00bc27 to your computer and use it in GitHub Desktop.
Elementor Kit overflow X scroll issue fix CSS
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
html { | |
height: 100%; | |
overflow: hidden; | |
} | |
body { | |
margin: 0; | |
width: 100vw; | |
height: 100%; | |
overflow-y: auto; | |
overflow-x: hidden; | |
-webkit-overflow-scrolling: touch; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment