-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 904 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
module.exports = {
mode: "jit",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
animation: {
tilt: 'tilt 10s infinite linear',
},
keyframes: {
tilt: {
'0%, 50%, 100%': {
transform: 'rotate(0deg)',
},
'25%': {
transform: 'rotate(0.5deg)',
},
'75%': {
transform: 'rotate(-0.5deg)',
},
},
},
gridTemplateColumns: {
't5': 'repeat(5, 200px)',
},
height: {
p200: '200px',
p166: '166px',
p141_7: '141.7px',
p120: '123.5px',
p109: '109.34px',
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("@tailwindcss/line-clamp"),
],
};