From a4a978c428f269e1136fe21056239b446adb44d5 Mon Sep 17 00:00:00 2001 From: Aidan Blum Levine Date: Tue, 10 Jan 2023 01:46:02 -0500 Subject: [PATCH] style scrollbars so they dont block content --- client/visualizer/src/static/css/style.css | 26 ++++++++++------------ 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/client/visualizer/src/static/css/style.css b/client/visualizer/src/static/css/style.css index 74d76f1b..8e8d9283 100644 --- a/client/visualizer/src/static/css/style.css +++ b/client/visualizer/src/static/css/style.css @@ -6,20 +6,18 @@ } /* Scrollbar styling */ - -/*::-webkit-scrollbar { - width: 10px; -}*/ - -/* Track */ -/*::-webkit-scrollbar-track { -background: rgb(252, 252, 252); -}*/ - -/* Handle */ -/*::-webkit-scrollbar-thumb { -background: var(--grey); -}*/ +::-webkit-scrollbar { + width: 7px; + height: 7px; +} +::-webkit-scrollbar-track { + background: #fff2; +} +::-webkit-scrollbar-thumb { + background-color: #20282c; + border-radius: 20px; + border: 1px solid white; +} body { margin: 0;