From 6d1d791163a38126b8ac111e80cc55994760dc54 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Mon, 20 Jun 2022 22:45:56 +0200 Subject: [PATCH] Correct color on scrollbar --- styles/REPL/REPLComplete.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles/REPL/REPLComplete.module.css b/styles/REPL/REPLComplete.module.css index 6cd9aa9..a85b2d6 100644 --- a/styles/REPL/REPLComplete.module.css +++ b/styles/REPL/REPLComplete.module.css @@ -10,9 +10,9 @@ } .container::-webkit-scrollbar-track { -background:rgb(0, 0, 0); + background:rgb(0, 0, 0); } .container::-webkit-scrollbar-thumb { -background:rgb(24, 138, 24); + background: var(--repl-color); } \ No newline at end of file