Last active
March 27, 2020 20:03
-
-
Save rickybrent/fa28b17e77adb20ca744160a7ad7d334 to your computer and use it in GitHub Desktop.
Minimal scrollbar for Vivaldi
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
/* ==UserStyle== | |
@name minimal-scrollbar | |
@version 1.0.0 | |
@description Minimal scrollbar for Vivaldi. | |
@namespace rickybrent | |
@author rickybrent | |
@license BSD-2-clause | |
@updateURL https://gist.githubusercontent.com/rickybrent/fa28b17e77adb20ca744160a7ad7d334/raw/minimal-scrollbar.user.css | |
==/UserStyle== */ | |
::-webkit-scrollbar-track { | |
-webkit-box-shadow: none !important; | |
background-color: black | |
} | |
::-webkit-scrollbar { | |
width: 1px !important; | |
background-color: transparent; | |
} | |
::-webkit-scrollbar-thumb { | |
background-color: #555555; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment