-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.01 KB
/
tailwind.config.js
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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
container: {
center: true,
padding: "1rem",
screens: {
"2xl": "1280px",
},
// DEFAULT: "1rem",
// sm: "2rem",
// lg: "4rem",
// xl: "5rem",
},
extend: {
animation: {
enter: "enter .2s ease-out",
leave: "leave .15s ease-in forwards",
},
keyframes: {
enter: {
"0%": {
transform: "scale(0.9)",
opacity: "0",
},
"100%": {
transform: "scale(1)",
opacity: "1",
},
},
leave: {
"0%": {
transform: "scale(1)",
opacity: "1",
},
"100%": {
transform: "scale(0.9)",
opacity: "0",
},
},
},
// gridTemplateRows: {
// mainLayout: "auto 1fr auto",
// },
},
},
plugins: [require("@tailwindcss/line-clamp")],
}