From eb5437e32ac136659aeb2e23bbcccac79c976cbb Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Sat, 26 Jan 2019 09:34:16 -0800 Subject: [PATCH] fix: increase custom scrollbar width (#914) --- src/scss/themes/_scrollbars.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/scss/themes/_scrollbars.scss b/src/scss/themes/_scrollbars.scss index 3d49046..4a07426 100644 --- a/src/scss/themes/_scrollbars.scss +++ b/src/scss/themes/_scrollbars.scss @@ -4,7 +4,7 @@ --scrollbar-border-radius: 0; --scrollbar-face-color-hover: #{$scrollbar-face-hover}; --scrollbar-face-color-active: #{$scrollbar-face-active}; - --scrollbar-width: 12px; - --scrollbar-height: 12px; + --scrollbar-width: calc(20px + .25em); + --scrollbar-height: calc(20px + .25em); --scrollbar-background-color: transparent; -} \ No newline at end of file +}