-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
44 lines (37 loc) · 833 Bytes
/
index.css
File metadata and controls
44 lines (37 loc) · 833 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
42
43
44
@import "tailwindcss";
body {
background-color: #0f172a;
overflow-x: hidden;
}
/* Hide scrollbar for clean card modal wrapper, but allow inner content to scroll with style */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.card-texture {
background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
background-size: 20px 20px;
}
/* GLOBAL THIN RED SCROLLBAR STYLES */
::-webkit-scrollbar {
width: 4px; /* Very thin */
height: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #e11d48; /* card-red */
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #be123c;
}
/* Firefox support */
* {
scrollbar-width: thin;
scrollbar-color: #e11d48 transparent;
}