-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
52 lines (51 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
44
45
46
47
48
49
50
51
52
module.exports = {
purge: [
'./resources/public/**/*.html',
'./resources/public/**/*.js',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
maxHeight: (theme) => ({
...theme("spacing"),
full: "100%", // You can add additional custom options below it too
screen: "100vh",
}),
spacing: {
72: "18rem",
80: "20rem",
88: "22rem",
98: "24.5rem",
108: "27rem",
118: "29.5rem",
128: "32rem",
138: "34.5rem",
150: "37.5rem",
162: "40.5rem",
174: "43.5rem",
186: "46.5rem",
198: "49.5rem",
214: "53.5rem",
228: "57rem",
242: "60.5rem",
256: "64rem",
272: "68rem",
288: "72rem",
314: "76rem",
330: "80rem",
},
screens: {
'print': {'raw': 'print'},
}
},
},
corePlugins: {
},
variants: {
extend: {
},
},
plugins: [
require('@tailwindcss/typography'),
],
}