Skip to content

Instantly share code, notes, and snippets.

@abdasis
Created March 1, 2022 08:11
Show Gist options
  • Save abdasis/de69c47234873fe7fa148258e619e72f to your computer and use it in GitHub Desktop.
Save abdasis/de69c47234873fe7fa148258e619e72f to your computer and use it in GitHub Desktop.
Soft scrollbar for google chrome
::-webkit-scrollbar-thumb {
background-color: #727272;
border-radius: 10px;
}
::-webkit-scrollbar {
height: 10px;
width: 8px;
border: 1px solid #ededed;
border-radius: 10px;
background: #f7f7f7;
}
::-webkit-scrollbar-thumb:horizontal {
background: #cbcbcb;
border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment