Skip to content

Instantly share code, notes, and snippets.

@rickybrent
Last active March 27, 2020 20:03
Show Gist options
  • Save rickybrent/fa28b17e77adb20ca744160a7ad7d334 to your computer and use it in GitHub Desktop.
Save rickybrent/fa28b17e77adb20ca744160a7ad7d334 to your computer and use it in GitHub Desktop.
Minimal scrollbar for Vivaldi
/* ==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