Created
August 31, 2021 16:52
-
-
Save irvingvjuarez/3bf4751f75684c74fdcb19200ceaaa64 to your computer and use it in GitHub Desktop.
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
| /* width */ | |
| ::-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