-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (44 loc) · 991 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
46 lines (44 loc) · 991 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}"],
theme: {
screens: {
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",
rotating: "rotate 15s linear infinite",
scalingUp: "scaleUp 3s linear infinite",
},
fontFamily:{
Jost: ["Jost", "sans-serif"],
Lobster: ["Lobster", "sans-serif"]
},
container:{
center: true,
padding: {
DEFAULT: "12px",
md: "32px",
}
},
},
plugins: [],
}