Created
December 19, 2025 19:05
-
-
Save saeedvaziry/34fd5e449510f24efb4b69918c1b6279 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
| ::-webkit-scrollbar { | |
| width: 8px; /* scrollbar width */ | |
| height: 8px; /* horizontal scrollbar height */ | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: transparent; /* track background */ | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background-color: rgba(100, 100, 100, 0.5); /* thumb color */ | |
| border-radius: 10px; /* rounded ends */ | |
| border: 2px solid transparent; /* padding around thumb */ | |
| background-clip: content-box; /* ensures border doesn’t overlap thumb */ | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background-color: rgba(100, 100, 100, 0.7); | |
| } | |
| .scrollbar-hide { | |
| scrollbar-width: none; /* Firefox */ | |
| -ms-overflow-style: none; /* IE 10+ */ | |
| } | |
| .scrollbar-hide::-webkit-scrollbar { | |
| display: none; /* Safari + Chrome */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment