From 747c011bf22509cfd938c18dcb477bfc48f3b255 Mon Sep 17 00:00:00 2001 From: Aditya30ag Date: Thu, 10 Jul 2025 20:51:05 +0530 Subject: [PATCH] (feat): added the scroll bar --- landing/src/index.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/landing/src/index.css b/landing/src/index.css index a372731d..31f5e082 100644 --- a/landing/src/index.css +++ b/landing/src/index.css @@ -39,4 +39,23 @@ body { .radial-gradient-bg { background: radial-gradient(circle at center, rgba(34, 197, 94, 0.15), transparent 50%); +} +/* Webkit Scrollbar Styling */ +::-webkit-scrollbar { + width: 10px; + height: 10px; +} + +::-webkit-scrollbar-track { + background: #000; /* Optional: light background */ + border-radius: 8px; +} + +::-webkit-scrollbar-thumb { + background: linear-gradient(to bottom, #167a16, #171787); /* Green to blue */ + border-radius: 8px; +} + +::-webkit-scrollbar-thumb:hover { + background: linear-gradient(to bottom, #167a16, #171787); } \ No newline at end of file