forked from shaun099/PACE
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}"],
theme: {
screens: {
sm: "340px",
md: "540px",
lg: "768px",
xl: "1180px",
},
extend: {
extend: {
scrollBehavior: ["smooth"],
},
},
keyframes: {
move: {
"50%": { transform: "translateY(-1rem)" },
},
scaleup: {
"0%": { transform: "scale(0.8)" },
"50%": { transform: "scale(1)" },
"100%": { transform: "scale(0.8)" },
},
},
animation: {
movingY: "move 3s linear infinite",
scaleup: "scaleup 3s linear infinite",
},
fontFamily: {
Anton: ["Anton", "sans-serif"], // Correct fallback
PermanentMarker: ["Permanent Marker", "sans-serif"], // Correct fallback
Monoton: ["Monoton", "sans-serif"], // Correct fallback
Mogra: ["Mogra", "sans-serif"], // Correct fallback
Rubik80: ["Rubik 80s Fade", "sans-serif"],
Jost: ["Jost", "serif"],
Cookie: ["Cookie", "serif"],
},
container: {
center: true,
padding: {
DEFAULT: "12px",
md: "32px",
},
},
},
plugins: [],
};