From f75ddfe6e2ec3671cf82fd654b4946f699b64815 Mon Sep 17 00:00:00 2001 From: a-box31 Date: Tue, 29 Nov 2022 13:14:59 -0500 Subject: [PATCH] better scroll bars Added theme to the scroll bar and scroll thumb. Looks better to scroll. --- CSS/index.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CSS/index.css b/CSS/index.css index 5c112bd..c3e6c1d 100644 --- a/CSS/index.css +++ b/CSS/index.css @@ -17,6 +17,19 @@ body { height:100%; margin:0; padding:0; } +body::-webkit-scrollbar { + width: .5rem +} + +body::-webkit-scrollbar-track{ + background-color: rgb(50,50,50); +} + +body::-webkit-scrollbar-thumb { + background-color: rgb(60,60,60); + border-radius: 10px; +} + .loginbtn { margin-top: 14px; scale: 1.2;