From 911cbea72d136f288ebebe2a5ceffd9543b95281 Mon Sep 17 00:00:00 2001 From: Jure <44338+hoornet@users.noreply.github.com> Date: Mon, 23 Mar 2026 11:42:12 +0100 Subject: [PATCH] Widen scrollbar from 6px to 12px for easier mouse dragging --- src/index.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.css b/src/index.css index 3197ce0..5af2906 100644 --- a/src/index.css +++ b/src/index.css @@ -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);