saq1b commited on
Commit
a38e074
·
verified ·
1 Parent(s): 276d6f7

Delete static

Browse files
Files changed (1) hide show
  1. static/custom.css +0 -38
static/custom.css DELETED
@@ -1,38 +0,0 @@
1
- .hover-scale {
2
- transition: transform 0.2s ease-in-out;
3
- }
4
-
5
- .hover-scale:hover {
6
- transform: scale(1.02);
7
- }
8
-
9
- .custom-scrollbar::-webkit-scrollbar {
10
- width: 6px;
11
- height: 6px;
12
- }
13
-
14
- .custom-scrollbar::-webkit-scrollbar-track {
15
- background: #f1f1f1;
16
- }
17
-
18
- .custom-scrollbar::-webkit-scrollbar-thumb {
19
- background: #888;
20
- border-radius: 3px;
21
- }
22
-
23
- .custom-scrollbar::-webkit-scrollbar-thumb:hover {
24
- background: #555;
25
- }
26
-
27
- /* Dark mode scrollbar */
28
- .dark .custom-scrollbar::-webkit-scrollbar-track {
29
- background: #1f2937;
30
- }
31
-
32
- .dark .custom-scrollbar::-webkit-scrollbar-thumb {
33
- background: #4b5563;
34
- }
35
-
36
- .dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
37
- background: #6b7280;
38
- }