This repository was archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
74 lines (74 loc) · 2.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module.exports = {
darkMode: "class",
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
theme: {
extend: {
keyframes: {
"fade-in-left": {
"0%": {
opacity: "0",
transform: "translateX(-100px)",
},
"100%": {
opacity: "1",
transform: "translateX(0)",
},
},
"fade-in-right": {
"0%": {
opacity: "0",
transform: "translateX(100px)",
},
"100%": {
opacity: "1",
transform: "translateX(0)",
},
},
"rubber-band": {
"0%": {
transform: "scale3d(1, 1, 1)",
},
"30%": {
transform: "scale3d(1.25, 0.75, 1)",
},
"40%": {
transform: "scale3d(0.75, 1.25, 1)",
},
"50%": {
transform: "scale3d(1.15, 0.85, 1)",
},
"65%": {
transform: "scale3d(0.95, 1.05, 1)",
},
"75%": {
transform: "scale3d(1.05, 0.95, 1)",
},
"100%": {
transform: "scale3d(1, 1, 1)",
},
},
},
animation: {
"fade-in-right": "fade-in-right 0.5s ease-out 1",
"fade-in-left": "fade-in-left 0.5s ease-out 1",
"rubber-band": "rubber-band 1s ease-in-out 1",
},
spacing: {
76: "17rem",
124: "36rem",
128: "40rem",
},
height: {
124: "36rem",
128: "40rem",
},
},
},
plugins: [require("@tailwindcss/typography")],
};