Created
December 21, 2021 10:27
-
-
Save wewindy/f74830f35850d39161ddd5fa8cbbd627 to your computer and use it in GitHub Desktop.
prettyScrollBar
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 { | |
| width : .5rem; | |
| height: .5rem; | |
| } | |
| ::-webkit-scrollbar-track { | |
| border-radius : .25rem; | |
| background : rgba(0, 0, 0, 0.06); | |
| box-shadow : inset 0 0 .4rem rgba(0, 0, 0, 0.08); | |
| -webkit-box-shadow: inset 0 0 .4rem rgba(0, 0, 0, 0.08); | |
| } | |
| /* 滚动条滑块 */ | |
| ::-webkit-scrollbar-thumb { | |
| border-radius : .25rem; | |
| background : rgba(0, 0, 0, 0.12); | |
| box-shadow : inset 0 0 .4rem rgba(0, 0, 0, 0.2); | |
| -webkit-box-shadow: inset 0 0 .4rem rgba(0, 0, 0, 0.2); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment