-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
52 lines (42 loc) · 1.03 KB
/
index.css
File metadata and controls
52 lines (42 loc) · 1.03 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";
/* Dark mode theme configuration */
@custom-variant dark (&:where(.dark, .dark *));
/* Custom global styles for Cleanivee */
@layer base {
body {
@apply bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-gray-100 antialiased transition-colors duration-200;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
}
/* Custom scrollbar for dashboards */
@layer utilities {
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
@apply bg-gray-300 dark:bg-gray-600;
border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
@apply bg-gray-400 dark:bg-gray-500;
}
}
/* Status indicator animations */
@layer components {
.status-pulse {
animation: statusPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes statusPulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.6;
}
}
}