Skip to content

Instantly share code, notes, and snippets.

@ratul16
Created June 1, 2020 07:00
Show Gist options
  • Save ratul16/f7cbdaf9659c65c7c1e30a6ce55400b3 to your computer and use it in GitHub Desktop.
Save ratul16/f7cbdaf9659c65c7c1e30a6ce55400b3 to your computer and use it in GitHub Desktop.
Customize your page scrollbar with as you see fix
::-webkit-scrollbar {
width: 0px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.8);
background: rgba(220, 53, 69, 1);
}
body {
overflow-x: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment