Fixes the bad scrollbar styling on TasksBoard
TasksBoard - Scrollbar fix (light) by stamminator
Details
Authorstamminator
LicenseMIT
Categorytasksboard.com/app
Created
Updated
Size540 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 TasksBoard - Scrollbar fix (light)
@version 20240221.23.47
@namespace https://userstyles.world/user/stamminator
@author stamminator
==/UserStyle== */
@-moz-document url-prefix("https://tasksboard.com/app") {
::-webkit-scrollbar {
width: 12px !important;
height: 12px !important;
}
::-webkit-scrollbar-thumb {
background-color: rgba(150, 150, 150, 0.5);
border-width: 3px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(150, 150, 150, 0.7);
border-width: 3px;
}
}