saq1b commited on
Commit
7de5949
·
verified ·
1 Parent(s): 06ff5f0

Delete styles.css

Browse files
Files changed (1) hide show
  1. styles.css +0 -60
styles.css DELETED
@@ -1,60 +0,0 @@
1
- .sort-icon {
2
- display: inline-block;
3
- width: 1em;
4
- }
5
-
6
- /* Custom scrollbar */
7
- ::-webkit-scrollbar {
8
- width: 8px;
9
- height: 8px;
10
- }
11
-
12
- ::-webkit-scrollbar-track {
13
- background: #f1f1f1;
14
- border-radius: 10px;
15
- }
16
-
17
- ::-webkit-scrollbar-thumb {
18
- background: #888;
19
- border-radius: 10px;
20
- }
21
-
22
- ::-webkit-scrollbar-thumb:hover {
23
- background: #555;
24
- }
25
-
26
- /* Animation for loading state */
27
- @keyframes pulse {
28
- 0% {
29
- opacity: 0.6;
30
- }
31
- 50% {
32
- opacity: 1;
33
- }
34
- 100% {
35
- opacity: 0.6;
36
- }
37
- }
38
-
39
- .loading-pulse {
40
- animation: pulse 1.5s infinite;
41
- }
42
-
43
- /* Responsive table adjustments */
44
- @media (max-width: 640px) {
45
- table th, table td {
46
- padding: 0.5rem 0.25rem;
47
- font-size: 0.75rem;
48
- }
49
- }
50
-
51
- /* Enhance transition effects */
52
- .hover\:bg-gray-50:hover {
53
- background-color: #f9fafb;
54
- transition: background-color 0.2s ease;
55
- }
56
-
57
- th.hover\:bg-gray-200:hover {
58
- background-color: #e5e7eb;
59
- transition: background-color 0.2s ease;
60
- }