Created
November 8, 2018 10:31
-
-
Save Farmatique/96901f3d161b2f7028676d21bd9cb8ad to your computer and use it in GitHub Desktop.
Custom scroll scrollbar look
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::-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