Skip to content

Instantly share code, notes, and snippets.

@ciases
Created November 16, 2017 12:59
Show Gist options
  • Save ciases/50560341d22d853b552610d81b91f9f6 to your computer and use it in GitHub Desktop.
Save ciases/50560341d22d853b552610d81b91f9f6 to your computer and use it in GitHub Desktop.
Custom webkit scrollbars
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar:horizontal {
height: 8px;
}
::-webkit-scrollbar-track {
background-color: #f9fafc;
border-radius: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #e2e6ee;
border-radius: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment