-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
53 lines (44 loc) · 1.07 KB
/
Copy pathindex.css
File metadata and controls
53 lines (44 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@import "tailwindcss";
@layer utilities {
/* Custom glassmorphism and subtle elevation */
.glass-card {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(226, 232, 240, 0.8);
}
}
/* Custom smooth scrollbars */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Recharts responsiveness tweaks */
.recharts-responsive-container {
min-height: 200px;
}
/* Recharts tooltip styling */
.recharts-default-tooltip {
background-color: #ffffff !important;
border: 1px solid #e2e8f0 !important;
color: #0f172a !important;
border-radius: 8px !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
font-size: 12px !important;
padding: 8px 12px !important;
}
.recharts-tooltip-item-name,
.recharts-tooltip-item-value,
.recharts-tooltip-title {
color: inherit !important;
}