Skip to content

Instantly share code, notes, and snippets.

@natterstefan
Created July 4, 2018 20:04
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 natterstefan/d294080bd0dee372cca03a81fa5c25c9 to your computer and use it in GitHub Desktop.
Save natterstefan/d294080bd0dee372cca03a81fa5c25c9 to your computer and use it in GitHub Desktop.
CSS: vertical scrollbar
/* width */
::-webkit-scrollbar {
width: 5px;
border: 1px solid #d5d5d5
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #3f51b5;
}
/* 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