Skip to content

Instantly share code, notes, and snippets.

@sematgt
Created July 21, 2021 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sematgt/7132985719c44fe1c3edb15fdf015230 to your computer and use it in GitHub Desktop.
Save sematgt/7132985719c44fe1c3edb15fdf015230 to your computer and use it in GitHub Desktop.
custom scrollbar for webkit and firefox
// scrollbar
// firefox
.textarea {
scrollbar-color: transparentize($color-titanic, 0.92) transparent;
scrollbar-width: thin;
}
// the rest, besides IE
.textarea::-webkit-scrollbar-track
{
background-color: transparent;
}
.textarea::-webkit-scrollbar
{
width: 4px;
height: 25%;
}
.textarea::-webkit-scrollbar-thumb
{
background-color: transparentize($color-titanic, 0.92);
border-radius: 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment