-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
40 lines (36 loc) · 1 KB
/
index.css
File metadata and controls
40 lines (36 loc) · 1 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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom styles for a dark, tracker-like theme */
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
html { font-family: 'Inter var', sans-serif; }
}
/* Style for disabled buttons */
button:disabled {
cursor: not-allowed;
opacity: 0.7;
}
/* Custom scrollbar for pattern display */
.pattern-scrollbar::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.pattern-scrollbar::-webkit-scrollbar-track {
/* FIX: Replaced '@apply bg-gray-800' with plain CSS */
background-color: #1f2937;
}
.pattern-scrollbar::-webkit-scrollbar-thumb {
/* FIX: Replaced '@apply bg-gray-600 rounded' with plain CSS */
background-color: #4b5563;
border-radius: 0.25rem;
}
.pattern-scrollbar::-webkit-scrollbar-thumb:hover {
/* FIX: Replaced '@apply bg-gray-500' with plain CSS */
background-color: #6b7280;
}