Created
November 6, 2017 11:45
-
-
Save Bewitchedyegor/070382b456587cd23fc9caba7d2a969d to your computer and use it in GitHub Desktop.
Styling scrollbar appearance
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
.selector::-webkit-scrollbar { | |
width: 5px; | |
} | |
.selector::-webkit-scrollbar-track { | |
-webkit-box-shadow: transparent; | |
} | |
.selector::-webkit-scrollbar-thumb { | |
border-radius: 10px; | |
background: #40c4e8; | |
-webkit-box-shadow: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment