diff --git a/src/app/globals.css b/src/app/globals.css index d4227f86e..7f2731179 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -307,3 +307,27 @@ padding: 0.5rem !important; } } + +/* Smooth scrollbar */ + +/* width */ +::-webkit-scrollbar { + width: 5px; +} + +/* Track */ +::-webkit-scrollbar-track { + background: #020817; + border-radius: 15px; +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: #2a2e3a; + border-radius: 15px; +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #555; +} \ No newline at end of file