-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathtailwind.css
More file actions
59 lines (51 loc) · 1.26 KB
/
tailwind.css
File metadata and controls
59 lines (51 loc) · 1.26 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@import "tailwindcss";
@theme {
--color-*: initial;
--color-bg: var(--bg-color);
--color-main: var(--main-color);
--color-caret: var(--caret-color);
--color-sub: var(--sub-color);
--color-sub-alt: var(--sub-alt-color);
--color-text: var(--text-color);
--color-error: var(--error-color);
--color-error-extra: var(--error-extra-color);
--color-colorful-error: var(--colorful-error-color);
--color-colorful-error-extra: var(--colorful-error-extra-color);
/* decide on rem or em */
--spacing: 0.25rem;
--breakpoint-*: initial;
--breakpoint-2xl: 1617px;
--breakpoint-xl: 1361px;
--breakpoint-lg: 1105px;
--breakpoint-md: 849px;
--breakpoint-sm: 721px;
--breakpoint-xs: 426px;
--breakpoint-xxs: 331px;
--default-transition-duration: 0.25s;
--duration-half: 0.125s;
@keyframes loader {
0% {
transform: translateX(-100%) scaleX(0);
}
50% {
transform: translateX(0) scaleX(1);
}
100% {
transform: translateX(100%) scaleX(0);
}
}
}
@layer utilities {
.rounded {
border-radius: var(--roundness);
}
.rounded-double {
border-radius: calc(var(--roundness) * 2);
}
.rounded-half {
border-radius: calc(var(--roundness) / 2);
}
.has-button\:p-0:has(button) {
padding: 0;
}
}