-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (42 loc) · 880 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (42 loc) · 880 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
const production = !process.env.ROLLUP_WATCH;
module.exports = {
darkMode: "class",
purge: {
enabled: production,
content: ["./src/**/*.scss", "./src/**/*.html", "./src/**/*.svelte"],
},
theme: {
extend: {
height: {
"max": "var(--app-height, 100vh)",
},
width: {
"max": "var(--app-width, 100%)",
},
spacing: {
"68": "17rem",
},
gridTemplateRows: {
"layout": "3.5rem calc(var(--app-height, 100vh) - 3.5rem)",
},
fontSize: {
"2xs": ".75rem",
"xs": "13px",
},
backgroundSize: {
"5": "1.25rem",
},
minWidth: {
"60": "15rem",
},
},
screens: {
"sm": "640px",
"md": "768px",
"lg": "1024px",
"xl": "1280px",
},
},
variants: {},
plugins: [require("@tailwindcss/forms/src")],
};