-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroot.css
38 lines (35 loc) · 808 Bytes
/
root.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: dark;
}
html {
@apply bg-slate-800 text-slate-50;
}
body * {
@apply transition-colors;
}
@layer components {
[type="text"],
[type="email"],
[type="url"],
[type="password"],
[type="number"],
[type="date"],
[type="datetime-local"],
[type="month"],
[type="search"],
[type="tel"],
[type="time"],
[type="week"],
[multiple],
textarea,
select {
@apply rounded-lg border-2 border-slate-600 bg-transparent placeholder-slate-500 focus:border-yellow-500 focus:ring-0 focus:ring-offset-0 disabled:bg-slate-600;
}
[type="checkbox"],
[type="radio"] {
@apply rounded-lg border-2 border-slate-600 bg-transparent text-yellow-500 focus:ring-0 focus:ring-offset-0 disabled:bg-slate-600;
}
}