From d519adaa51d8b9aaa9640afeb0d530944aa4529a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Sun, 11 Oct 2020 11:18:23 +0200 Subject: [PATCH] Increase scrollbar sizes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- core/css/styles.scss | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/css/styles.scss b/core/css/styles.scss index c94b06fd50..e2fe4e787f 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -151,8 +151,8 @@ body { /* SCROLLING */ ::-webkit-scrollbar { - width: 6px; - height: 5px; + width: 12px; + height: 12px } ::-webkit-scrollbar-track-piece { @@ -161,7 +161,9 @@ body { ::-webkit-scrollbar-thumb { background: var(--color-border-dark); - border-radius: var(--border-radius); + border-radius: var(--border-radius-large); + border: 2px solid transparent; + background-clip: content-box; }