-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
41 lines (34 loc) · 744 Bytes
/
Copy pathindex.css
File metadata and controls
41 lines (34 loc) · 744 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
41
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-slate-50 text-primary-950 font-sans antialiased;
}
}
::selection {
background-color: theme('colors.accent.500');
color: white;
}
/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
@apply bg-slate-100;
}
::-webkit-scrollbar-thumb {
@apply bg-slate-300 rounded-full;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-slate-400;
}
/* Base utility for hiding scrollbar visually but keeping functionality */
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
display: none;
}