From 8150a25ffd9395ca2015e7e298eb10f3ec9f38a5 Mon Sep 17 00:00:00 2001 From: cirroskais Date: Sun, 21 Apr 2024 05:49:51 -0400 Subject: [PATCH] round out scrollbar --- src/app.css | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/app.css b/src/app.css index a9d211a..10d594c 100644 --- a/src/app.css +++ b/src/app.css @@ -27,17 +27,19 @@ body { } ::-webkit-scrollbar { - width: 3.5px; -} - -::-webkit-scrollbar-track { - background: rgba(0, 0, 0, 0); + width: 2px; } ::-webkit-scrollbar-thumb { - background: #c4bef3; + background-color: #c4bef3; + border-radius: 10rem; + border: 1px solid #c4bef3; } -::-webkit-scrollbar-thumb:hover { - background: #9d98c2; +::-webkit-scrollbar-track-piece:start { + background: transparent; +} + +::-webkit-scrollbar-track-piece:end { + background: transparent; }