Last active
August 22, 2018 06:23
-
-
Save xiaoda/628188f4a10a0a0ec0082bd61552d032 to your computer and use it in GitHub Desktop.
Scrollbar Styles (Webkit / IE)
This file contains 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 */ | |
::-webkit-scrollbar { | |
width: 8px; | |
} | |
::-webkit-scrollbar-thumb { | |
border-radius: 4px; | |
background-color: $color-thumb; | |
} | |
/* IE(Not Edge) */ | |
body { | |
scrollbar-face-color: $color-thumb; | |
scrollbar-arrow-color: $color-thumb; | |
scrollbar-track-color: $color-track; | |
-ms-overflow-style: -ms-autohiding-scrollbar; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment