Skip to content

Instantly share code, notes, and snippets.

@joychetry
Created May 21, 2024 12:59
Show Gist options
  • Save joychetry/1b7d5627d73d548ac7559373d598b01e to your computer and use it in GitHub Desktop.
Save joychetry/1b7d5627d73d548ac7559373d598b01e to your computer and use it in GitHub Desktop.
Scrollbar
::-webkit-scrollbar{
width: 4px;
border-radius: 4px;
margin-left: 4px;
}
::-webkit-scrollbar-track{
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb{
background: rgba(0, 0, 0, 0.31);
}
selector{
max-height: 300px;
overflow-x: hidden;
overflow-y: scroll;
}
selector::-webkit-scrollbar{
width: 14px;
}
selector::-webkit-scrollbar-track{
background: rgba(0, 0, 0, 0.1);
}
selector::-webkit-scrollbar-thumb{
background: rgba(0, 0, 0, 0.31);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment