Widen scrollbar from 6px to 12px for easier mouse dragging

This commit is contained in:
Jure
2026-03-23 11:42:12 +01:00
parent ac4e39fcbf
commit 911cbea72d

View File

@@ -97,16 +97,16 @@ body {
animation: fade-in 150ms ease-out;
}
/* Scrollbar — thin, minimal */
/* Scrollbar */
::-webkit-scrollbar {
width: 6px;
width: 12px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--color-border);
border-radius: 3px;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--color-text-dim);