Skip to content

Instantly share code, notes, and snippets.

@Hansanghyeon
Created June 22, 2021 05:24
Show Gist options
  • Save Hansanghyeon/440d6b04f28bad4233531515a78f6cbb to your computer and use it in GitHub Desktop.
Save Hansanghyeon/440d6b04f28bad4233531515a78f6cbb to your computer and use it in GitHub Desktop.
[ui] scroll
&::-webkit-scrollbar {
height: 3px;
}
&::-webkit-scrollbar-track {
background-color: #fff;
}
&::-webkit-scrollbar-thumb {
background: #ddd;
border-radius: 10px;
}
&::-webkit-scrollbar-thumb:hover {
background: #404040;
}
&::-webkit-scrollbar-thumb:active {
background: #808080;
}
&::-webkit-scrollbar-button {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment