From f16c6ff8390dd0e39687f5a1635721e292b05c9b Mon Sep 17 00:00:00 2001 From: Beau Findlay Date: Fri, 26 Apr 2024 16:11:44 +0100 Subject: [PATCH] Style scroll bar --- src/Client/src/index.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Client/src/index.css b/src/Client/src/index.css index 7c8243d..7877d5a 100644 --- a/src/Client/src/index.css +++ b/src/Client/src/index.css @@ -16,3 +16,16 @@ opacity: 1; } } + +body::-webkit-scrollbar { + width: 10px; +} + +body::-webkit-scrollbar-track { + background: white; +} + +body::-webkit-scrollbar-thumb { + background-color: black; + border: 1px solid white; +}