Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created November 10, 2016 03:40
Show Gist options
  • Save etoxin/a56d9288e07e3fc6393f5a964e608132 to your computer and use it in GitHub Desktop.
Save etoxin/a56d9288e07e3fc6393f5a964e608132 to your computer and use it in GitHub Desktop.
Custom scrollbar
.whatever{
&::-webkit-scrollbar {
width: 10px;
}
/* Track */
&::-webkit-scrollbar-track,
&::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0,0,0,0);
border-radius: 10px;
}
/* Handle */
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #d6d6d6;
}
&::-webkit-scrollbar-thumb:window-inactive {
background: #d6d6d6;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment