-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
44 lines (43 loc) · 1.07 KB
/
tailwind.config.ts
File metadata and controls
44 lines (43 loc) · 1.07 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
import type { Config } from "tailwindcss";
export default {
content: [],
theme: {
extend: {
keyframes: {
"collapsible-down": {
from: {
height: "0",
filter: "blur(5px)",
opacity: "0",
transform: "translateY(-10px)",
},
to: {
height: "var(--radix-collapsible-content-height)",
filter: "blur(0)",
opacity: "1",
transform: "translateY(0)",
},
},
"collapsible-up": {
from: {
height: "var(--radix-collapsible-content-height)",
filter: "blur(0)",
opacity: "1",
transform: "translateY(0)",
},
to: {
height: "0",
filter: "blur(5px)",
opacity: "0",
transform: "translateY(-10px)",
},
},
},
animation: {
"collapsible-down": "collapsible-down 0.2s ease-out",
"collapsible-up": "collapsible-up 0.2s ease-out",
},
},
},
plugins: [],
} satisfies Config;