From 4f76aaf1cba22e56ecd4af9c3d8fdda5d74c4acd Mon Sep 17 00:00:00 2001 From: Shivani Sorte Date: Thu, 30 Mar 2023 16:46:19 +0530 Subject: [PATCH 1/2] customized scrollbar --- apps/landing/main.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/apps/landing/main.css b/apps/landing/main.css index 9a08de800..b27b07c8a 100644 --- a/apps/landing/main.css +++ b/apps/landing/main.css @@ -4762,4 +4762,24 @@ .fas { /* color: rgba(255,255,255,.5);; */ color: inherit; + } + + /* Custom Scrollbar */ + + ::-webkit-scrollbar { + width: 15px; + } + + ::-webkit-scrollbar-track { + box-shadow: inset 0 0 1px grey; + border-radius: 0px; + } + + ::-webkit-scrollbar-thumb { + background: #9a2ca0; + border-radius: 5px; + } + + ::-webkit-scrollbar-thumb:hover { + background: grey; } \ No newline at end of file From 321223f471df32c6579b23f74f4eb08972b32482 Mon Sep 17 00:00:00 2001 From: Shivani Sorte Date: Thu, 30 Mar 2023 16:49:01 +0530 Subject: [PATCH 2/2] reducing width --- apps/landing/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/landing/main.css b/apps/landing/main.css index b27b07c8a..2023e81e5 100644 --- a/apps/landing/main.css +++ b/apps/landing/main.css @@ -4767,7 +4767,7 @@ /* Custom Scrollbar */ ::-webkit-scrollbar { - width: 15px; + width: 12px; } ::-webkit-scrollbar-track {