Skip to content

Instantly share code, notes, and snippets.

@mihaiserban
Created April 1, 2019 10:58
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 mihaiserban/b74904d43c4e812b38a6ac23dcd8b77f to your computer and use it in GitHub Desktop.
Save mihaiserban/b74904d43c4e812b38a6ac23dcd8b77f to your computer and use it in GitHub Desktop.
custom scrollbar ::-webkit-scrollbar
/* total width */
::-webkit-scrollbar {
width: 14px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 14px 14px transparent;
border: solid 4px transparent;
}
::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 14px 14px #bbbbbe;
border: solid 4px transparent;
border-radius: 14px;
}
/* set button(top and bottom of the scrollbar) */
::-webkit-scrollbar-button {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment