Skip to content

Instantly share code, notes, and snippets.

@irvingvjuarez
Created August 31, 2021 16:52
Show Gist options
  • Select an option

  • Save irvingvjuarez/3bf4751f75684c74fdcb19200ceaaa64 to your computer and use it in GitHub Desktop.

Select an option

Save irvingvjuarez/3bf4751f75684c74fdcb19200ceaaa64 to your computer and use it in GitHub Desktop.
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment