From f44d8b13464c21c7503d884f0975ace059c3cca4 Mon Sep 17 00:00:00 2001 From: kehyshow Date: Mon, 27 Jun 2022 21:11:46 +0430 Subject: [PATCH] style: :lipstick: set styles for scrollbar --- styles/globals.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/styles/globals.css b/styles/globals.css index 8795abc..65074ce 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -157,3 +157,17 @@ a { padding-bottom: 40px !important; } } + +::-webkit-scrollbar { + width: 0.5rem; + height: 0.5rem; +} + +::-webkit-scrollbar-track { + background-color: rgb(var(--color-bg)); +} + +::-webkit-scrollbar-thumb { + background-color: #ee384e; + border-radius: 100vw; +}