Skip to content

Instantly share code, notes, and snippets.

@bargar
Created June 15, 2016 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bargar/554a981a26f3318b726aca1c17f3026f to your computer and use it in GitHub Desktop.
Save bargar/554a981a26f3318b726aca1c17f3026f to your computer and use it in GitHub Desktop.
minimal but more pleasant scrollbar styling for webkit
// blend in with background, less visually jarring than native
$scrollbar-size: 7px;
::-webkit-scrollbar {
background-color: $background-color;
width: $scrollbar-size;
height: $scrollbar-size;
}
::-webkit-scrollbar-thumb {
background:#999;
border-radius: $scrollbar-size / 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment