Last active
December 28, 2020 07:32
-
-
Save raflyfahrezi/3f49247ec97961ba12bed08b665fb96b to your computer and use it in GitHub Desktop.
Custom Scroll CSS
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: 5px; | |
height: 5px; | |
} | |
::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} | |
::-webkit-scrollbar-thumb { | |
background: #888; | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background: #555; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment