From e31777b98551aae4bc033ee475784f51fbcf4343 Mon Sep 17 00:00:00 2001 From: k Date: Sun, 23 May 2021 17:39:39 -0500 Subject: [PATCH] remove scrollbar height and border-radius In order to match the theme presentation (https://i.imgur.com/cCiHOGS.jpg), the previous defined `height: 7px` and `border-radius: 10px` for the scrollbar have been deleted. --- assets/scss/partials/layout/list.scss | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/assets/scss/partials/layout/list.scss b/assets/scss/partials/layout/list.scss index b6bb959..dc51214 100644 --- a/assets/scss/partials/layout/list.scss +++ b/assets/scss/partials/layout/list.scss @@ -52,20 +52,11 @@ margin-bottom: var(--section-separation); overflow-x: auto; - /* scrollbar styles for Firefox */ + /* Scrollbar styles for Firefox */ scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track); - /* scrollbar styles for Chromium */ - &::-webkit-scrollbar { - height: 7px; - border-radius: 10px; - } - - &::-webkit-scrollbar-thumb, &::-webkit-scrollbar-track { - border-radius: 10px; - } - + /* Scrollbar styles for Chromium */ &::-webkit-scrollbar-thumb { background-color: var(--scrollbar-thumb); }