Makes the scrollbar thin and rounded.
Universal Prettier Scrollbar by cass_per
Details
Authorcass_per
LicenseNo License
Categoryall
Created
Updated
Size575 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Prettier Scrollbar
@version 20220301.06.14
@namespace userstyles.world/user/cass_per
@description Makes the scrollbar thin and rounded.
@author cass_per
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://"), url-prefix("http://") {
body::-webkit-scrollbar {
width: 8px;
}
body::-webkit-scrollbar-track {
background: transparent; /*background*/
}
body::-webkit-scrollbar-thumb {
background-color: gray; /*scroller*/
border-radius: 5px;
border: 2px solid transparent;
}
}