wuhp commited on
Commit
21b6fff
·
verified ·
1 Parent(s): f226ca1

Create index.css

Browse files
Files changed (1) hide show
  1. index.css +15 -0
index.css ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Custom scrollbar for dark theme */
2
+ ::-webkit-scrollbar {
3
+ width: 8px;
4
+ height: 8px;
5
+ }
6
+ ::-webkit-scrollbar-track {
7
+ background: #0f172a;
8
+ }
9
+ ::-webkit-scrollbar-thumb {
10
+ background: #334155;
11
+ border-radius: 4px;
12
+ }
13
+ ::-webkit-scrollbar-thumb:hover {
14
+ background: #475569;
15
+ }