Last active
January 22, 2023 14:31
-
-
Save luisfelipe-dev/aecc34d0a154604aab4461fb53904962 to your computer and use it in GitHub Desktop.
barra de rolagem, 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 { | |
width: 8px; | |
} | |
::-webkit-scrollbar-track { | |
background-color: #eaeaea; | |
} | |
::-webkit-scrollbar-thumb { | |
background-color: #b0b0b0; | |
border-radius: 6px; | |
cursor: pointer; | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background-color: #94bf0b; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ty