Spaces:
Running
Running
Create index.css
Browse files
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 |
+
}
|