Last active
February 28, 2023 20:54
-
-
Save 2thecrow/8169dd22eeef730db56be105df3f9976 to your computer and use it in GitHub Desktop.
Custom scroll bar
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
/* Scroll bar width */ | |
::-webkit-scrollbar { | |
width: 10px; | |
} | |
/* Scroll bar track */ | |
::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} | |
/* Scroll bar handle */ | |
::-webkit-scrollbar-thumb { | |
background: #5e4838; | |
} | |
/* Scroll bar Handle on hover */ | |
::-webkit-scrollbar-thumb:hover { | |
background: #9a4232; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment