-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 969 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,js}"],
theme: {
screen: {
sm:"340px",
md:"540px",
lg:"768px",
xl:"1180px",
},
extend: {},
keyframes: {
move: {
"50%": { transform: "translateY(-1rem)"}
},
rotate: {
"0%": { transform: "rotate(0deg)"},
"100%": { transform: "rotate(360deg)"}
},
scaleUp: {
"0%": { transform: "scale(0.8)"},
"50%": { transform: "scale(1.2)"},
"100%": { transform: "scale(0.8)"},
},
},
animation: {
movingY: "move 3s linear infinite",
rotate: "rotate 15s linear infinite",
scalingUp: "scaleUp 3s linear infinite",
},
fontFamily: {
Jost: ["Jost", "serif"],
Lobster: ["Lobster", "serif"]
},
container: {
center: true,
padding: {
DEFAULT: "12px",
md: "32px",
}
}
},
plugins: [],
}