Skip to content

Instantly share code, notes, and snippets.

@MurhafSousli
Created July 9, 2019 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MurhafSousli/d5e77c8edf84f9f91b4aa54c05c2d588 to your computer and use it in GitHub Desktop.
Save MurhafSousli/d5e77c8edf84f9f91b4aa54c05c2d588 to your computer and use it in GitHub Desktop.
Hide native scrollbars on all desktop browsers
.hide-native-scrollbar {
scrollbar-width: none; /* Firefox 64 */
-ms-overflow-style: none; /* IE 11 */
&::-webkit-scrollbar { /** Webkit */
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment