From 99c442663abac344bbe2e1ae05062b2b4baefa66 Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Mon, 19 Jan 2026 14:52:54 -0400 Subject: [PATCH] import scrollbar --- src/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/style.css b/src/style.css index 641df19..c918789 100644 --- a/src/style.css +++ b/src/style.css @@ -5,4 +5,24 @@ src: url('/fonts/Roboto-Regular.ttf') format('truetype'); font-weight: normal; font-style: normal; +} + +/* Custom scrollbar styles */ +::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +::-webkit-scrollbar-track { + background-color: #1f2937; /* gray-800 */ + border-radius: 10px; +} + +::-webkit-scrollbar-thumb { + background-color: #4b5563; /* gray-600 */ + border-radius: 10px; +} + +::-webkit-scrollbar-thumb:hover { + background-color: #6b7280; /* gray-500 */ } \ No newline at end of file