Skip to content

Instantly share code, notes, and snippets.

@rickyalmeidadev
Created June 24, 2021 21:30
Show Gist options
  • Save rickyalmeidadev/532a963ce5446c890ac67733cf2b5a36 to your computer and use it in GitHub Desktop.
Save rickyalmeidadev/532a963ce5446c890ac67733cf2b5a36 to your computer and use it in GitHub Desktop.
A Beatiful Scrollbar
body::-webkit-scrollbar {
background-color: #fff;
width: 16px;
}
body::-webkit-scrollbar-track {
background-color: #fff;
}
body::-webkit-scrollbar-thumb {
background-color: #babac0;
border-radius: 16px;
border: 4px solid #fff;
}
body::-webkit-scrollbar-button {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment