Get stylized scrollbar on dev.to ! Work with all themes on the platform.
DEV.to Scrollbar by thomasbnt
Details
Authorthomasbnt
LicenseNo License
Categorydev.to
Created
Updated
Size490 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 dev.to Scrollbar
@namespace userstyles.world
@version 1.0.0
@author Thomas Bnt
==/UserStyle== */
@-moz-document domain("dev.to"), domain("forem.dev"), domain("community.webmonetization.org") {
::-webkit-scrollbar {
width: 9px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--base-40);
}
::-webkit-scrollbar-thumb:hover {
background: var(--base-60);
}
}