-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.js
43 lines (43 loc) · 1.03 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
module.exports = {
purge: ["./src/**/*.js", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: { custom: ["Encode Sans Expanded", "sans-serif"] },
spacing: {
800: "50rem",
860: "54rem",
1100: "69rem",
1300: "81rem",
},
gridAutoColumns: {
"1fr": "minmax(auto, 1fr)",
},
minHeight: {
692: "43rem",
},
},
screens: {
lg: { max: "960px" },
md: { max: "768px" },
sm: { max: "480px" },
xsm: { max: "320px" },
},
gridTemplateAreas: {
xlimgstart: ["col2 col1"],
xlimgend: ["col1 col2"],
mdimgstart: ["col1", "col2"],
mdimgend: ["col1 col1", "col2 col2"],
},
},
variants: {
extend: {
backgroundColor: ["active"],
transform: ["hover"],
transitionProperty: ["hover"],
transitionDuration: ["hover"],
transitionTimingFunction: ["hover"],
},
},
plugins: [require("@savvywombat/tailwindcss-grid-areas")],
};