forked from 10-3-pursuit/jwt-auth-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
77 lines (77 loc) · 1.68 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
75
76
77
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
width: {
100: "25rem",
104: "26rem",
108: "27rem",
112: "28rem",
116: "29rem",
120: "30rem",
124: "31rem",
128: "32rem",
132: "33rem",
136: "34rem",
140: "35rem",
144: "36rem",
148: "37rem",
152: "38rem",
156: "39rem",
160: "40rem",
164: "41rem",
168: "42rem",
172: "43rem",
176: "44rem",
180: "45rem",
184: "46rem",
188: "47rem",
192: "48rem",
},
height: {
100: "25rem",
104: "26rem",
108: "27rem",
112: "28rem",
116: "29rem",
120: "30rem",
124: "31rem",
128: "32rem",
132: "33rem",
136: "34rem",
140: "35rem",
144: "36rem",
148: "37rem",
152: "38rem",
156: "39rem",
160: "40rem",
164: "41rem",
168: "42rem",
172: "43rem",
176: "44rem",
180: "45rem",
184: "46rem",
188: "47rem",
192: "48rem",
},
keyframes: {
wiggle: {
"0%, 100%": {
transform: "rotate(-3deg)",
},
"50%": {
transform: "rotate(3deg)",
},
},
},
animation: {
wiggle: "wiggle 5s ease-in-out infinite",
},
animation: {
float: "custom-float 3s ease-in-out infinite", // Adjust animation speed as needed
},
},
},
plugins: [require("@tailwindcss/typography")],
};