Themes the scrollbars to look like the rest of the site. That's it.
Uses webkit, so will not work in browsers that don't support it.
Authorsippbox
LicenseNo License
Categoryvrchat.com/home
Created
Updated
Size541 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Themes the scrollbars to look like the rest of the site. That's it.
Uses webkit, so will not work in browsers that don't support it.
/* ==UserStyle==
@name vrchat.com - 2/23/2023, 12:00:29 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("vrchat.com") {
/* width */
::-webkit-scrollbar {
width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
background: #07242b;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #61d2e6;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
}