Created
June 22, 2021 05:24
-
-
Save Hansanghyeon/440d6b04f28bad4233531515a78f6cbb to your computer and use it in GitHub Desktop.
[ui] scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&::-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