Skip to content

Instantly share code, notes, and snippets.

@Bewitchedyegor
Created November 6, 2017 11:45
Show Gist options
  • Save Bewitchedyegor/070382b456587cd23fc9caba7d2a969d to your computer and use it in GitHub Desktop.
Save Bewitchedyegor/070382b456587cd23fc9caba7d2a969d to your computer and use it in GitHub Desktop.
Styling scrollbar appearance
.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