Created
June 24, 2021 21:30
-
-
Save rickyalmeidadev/532a963ce5446c890ac67733cf2b5a36 to your computer and use it in GitHub Desktop.
A Beatiful Scrollbar
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
body::-webkit-scrollbar { | |
background-color: #fff; | |
width: 16px; | |
} | |
body::-webkit-scrollbar-track { | |
background-color: #fff; | |
} | |
body::-webkit-scrollbar-thumb { | |
background-color: #babac0; | |
border-radius: 16px; | |
border: 4px solid #fff; | |
} | |
body::-webkit-scrollbar-button { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment