-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
40 lines (33 loc) · 791 Bytes
/
index.css
File metadata and controls
40 lines (33 loc) · 791 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply text-zinc-200 antialiased font-sans selection:bg-zinc-700/30;
background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #09090b 100%);
background-attachment: fixed;
}
}
@layer utilities {
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
@apply bg-white/10 rounded-full hover:bg-white/20 transition-colors;
}
}
/* Animations */
.fade-in {
@apply animate-[fadeIn_0.5s_ease-out];
}