From 55a19dd4624d030b0b9adc9f6044408bc987ea5d Mon Sep 17 00:00:00 2001 From: dertyp7 Date: Sat, 13 Jan 2024 18:28:33 +0100 Subject: [PATCH] Add custom scrollbar styles --- src/styles/index.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/styles/index.scss b/src/styles/index.scss index ee2722b..4970883 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -79,3 +79,16 @@ body, height: 100vh; width: 100%; } + +::-webkit-scrollbar { + width: 7px; +} + +::-webkit-scrollbar-track { + background: transparent; +} + +::-webkit-scrollbar-thumb { + background: var(--color-accent); + border-radius: 5px; +}