-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.58 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
49
50
51
52
53
/** @type {import("tailwindcss").Config} */
module.exports = {
content: [
"./public/index.html",
"./src/input.css",
// "./muzone/index.html",
// "./src/input-mz.css"
],
theme: {
screens: {
xs: "350px",
sm: "641px",
xl: "1300px",
"2xl": "1550px"
},
extend: {
gridTemplateColumns: {
body: "calc(66.66% - 4rem) 8rem calc(33.33% - 4rem)",
"body-mz": "calc(66.66% - 2rem) 1rem calc(33.33% - 2rem)"
},
gridColumn: {
2: "2"
},
gridTemplateRows: {
body: "calc(100dvh - 10rem) 10rem",
"body-xl": "100dvh"
},
gridRow: {
2: "2"
},
backgroundSize: {
size: "58px 58px"
},
fontSize: {
"html-xs": ".5625rem",
html: ".625rem",
"html-sm": ".75rem",
"html-2xl": ".8125rem",
browser: ".9375rem",
help: "1.25rem",
main: "1.75rem",
h1: ["5rem", "1"],
"7xl": ["7rem", "1"],
"10xl": ["10rem", "1"]
},
fontFamily: {
"space-grotesk": ["Space Grotesk", "ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"],
nabla: ["Nabla", "Space Grotesk", "ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"]
}
}
}
}