Created
May 30, 2020 21:04
-
-
Save b-coimbra/387c5d893d1d4b96ee3b1cd495728eec to your computer and use it in GitHub Desktop.
This file contains 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
/* ==UserStyle== | |
@name Minimal scrollbar - 2/13/2020, 7:05:30 PM | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description Replaces the ugly standard scrollbar on all webpages | |
@author index | |
==/UserStyle== */ | |
@-moz-document regexp(".*") { | |
::-webkit-scrollbar { | |
width: 8px; | |
background: transparent; | |
} | |
::-webkit-scrollbar-thumb { | |
background: rgba(255, 255, 255, .15); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment