Skip to content

Instantly share code, notes, and snippets.

@xiaoda
Last active August 22, 2018 06:23
Show Gist options
  • Save xiaoda/628188f4a10a0a0ec0082bd61552d032 to your computer and use it in GitHub Desktop.
Save xiaoda/628188f4a10a0a0ec0082bd61552d032 to your computer and use it in GitHub Desktop.
Scrollbar Styles (Webkit / IE)
/* 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