Skip to content

Instantly share code, notes, and snippets.

@o-az
Created November 29, 2023 00:44
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 o-az/4c0f8ff3d602b0f7535ae9e2d6f95822 to your computer and use it in GitHub Desktop.
Save o-az/4c0f8ff3d602b0f7535ae9e2d6f95822 to your computer and use it in GitHub Desktop.
/* hide scrollbar */
*::-webkit-scrollbar {
height: 0.3rem;
width: 0rem;
}
*::-webkit-scrollbar-track {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
*::-webkit-scrollbar-thumb {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
@supports (scrollbar-gutter: stable) {
html {
overflow-y: auto;
scrollbar-gutter: stable;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment