Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created November 8, 2018 10:31
Show Gist options
  • Save Farmatique/96901f3d161b2f7028676d21bd9cb8ad to your computer and use it in GitHub Desktop.
Save Farmatique/96901f3d161b2f7028676d21bd9cb8ad to your computer and use it in GitHub Desktop.
Custom scroll scrollbar look
::-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