Created
January 11, 2025 07:55
-
-
Save Lego2012/f1c63f8b7af0560cded4c076ec944b53 to your computer and use it in GitHub Desktop.
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
| // Custom Scrollbar | |
| body::-webkit-scrollbar { | |
| width: 1em; | |
| height: 1em; | |
| } | |
| body::-webkit-scrollbar-track { | |
| background: var(--action-light); | |
| // border-radius: 100vw; | |
| // margin-block: 0.5em; | |
| } | |
| body::-webkit-scrollbar-thumb { | |
| background: var(--action-dark); | |
| border: 0.25em solid var(--action-light); | |
| // border-radius: 100vw; | |
| } | |
| body::-webkit-scrollbar-thumb:hover { | |
| background: var(--action-dark); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment