From eb1d120345ed6438ba521387d3f79a60255a3d21 Mon Sep 17 00:00:00 2001 From: sparks-alec Date: Sun, 11 Jun 2023 22:49:26 -0400 Subject: [PATCH] fix scrollbar color on transparent areas --- src/assets/css/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assets/css/index.css b/src/assets/css/index.css index a574c13..f1884b4 100644 --- a/src/assets/css/index.css +++ b/src/assets/css/index.css @@ -372,12 +372,12 @@ body :not(input):not(select):not(textarea) { } ::-webkit-scrollbar { - background-color: black; + /* background-color: black; */ width: 12px; } ::-webkit-scrollbar-track, ::-webkit-scrollbar-corner { - background-color: #2b2b2b; + background-color: rgba(0, 0, 0, 0.1); } ::-webkit-scrollbar-thumb { background-color: #6b6b6b;