-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
42 lines (41 loc) · 1.01 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
lobster: ["Lobster Two", "cursive"],
dosis: ["Dosis", "sans-serif"],
},
maxWidth: {
productImg: "250px",
},
maxHeight: {
productImg: "250px",
},
width: {
card: "300px",
"mobile-img": "250px",
"desktop-img": "210px",
},
height: {
nav: "70px",
"mobile-img": "250px",
"desktop-img": "210px",
},
gridTemplateColumns: {
"auto-fit": "repeat( auto-fit, minmax(300px, 1fr) )",
},
keyframes: {
shake: {
"0%": { transform: "rotateZ(20deg) scale(1.1)" },
"25%": { transform: "rotateZ(-20deg) scale(1.2)" },
"50%": { transform: "rotateZ(15deg) scale(1.1)" },
"75%": { transform: "rotateZ(-15deg) scale(1)" },
},
},
},
},
plugins: [],
};
module.exports = config;