-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanda.config.ts
More file actions
54 lines (53 loc) · 1.17 KB
/
Copy pathpanda.config.ts
File metadata and controls
54 lines (53 loc) · 1.17 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
import { defineConfig } from "@pandacss/dev";
export default defineConfig({
include: ["./src/**/*.{js,jsx,ts,tsx}"],
jsxFramework: "react",
theme: {
extend: {
breakpoints: {
sm: "480px",
lg: "830px",
},
keyframes: {
fadeUp: {
from: { opacity: 0, transform: "translateY(12px)" },
to: { opacity: 1, transform: "translateY(0)" },
},
fadeIn: {
from: {
opacity: 0.1,
transform: "translateY(-1rem)",
},
to: {
opacity: 1,
transform: "translateY(0)",
},
},
pulse: {
"0%, 100%": { opacity: 1 },
"50%": { opacity: 0.5 },
},
scaleInSubtle: {
from: {
transform: "scale(0.8)",
opacity: 0,
},
to: {
transform: "scale(1)",
opacity: 1,
},
},
scaleOutSubtle: {
from: {
transform: "scale(1)",
opacity: 1,
},
to: {
transform: "scale(0.8)",
opacity: 0,
},
},
},
},
},
});