From 9c42438530d9628e612fcb2da20648039ff05a4b Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 May 2023 18:10:23 +0200 Subject: [PATCH] Added a scrollbar style to the main.sass --- client/src/common/styles/main.sass | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/client/src/common/styles/main.sass b/client/src/common/styles/main.sass index 9cfe874..9efdeac 100644 --- a/client/src/common/styles/main.sass +++ b/client/src/common/styles/main.sass @@ -4,4 +4,14 @@ body background-color: $background font-family: 'Inter', sans-serif height: 100vh - margin: 0 \ No newline at end of file + margin: 0 + +::-webkit-scrollbar + width: 5px + +::-webkit-scrollbar-thumb + background: $dark-gray + border-radius: 10px + +::-webkit-scrollbar-thumb:hover + background: $primary \ No newline at end of file