-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 938 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
44
45
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
// purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
purge: {
content: [
"./pages/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
"./sections/**/*.{js,jsx,ts,tsx}",
],
},
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
'xs': '475px',
...defaultTheme.screens,
},
zIndex: {
"-1": -1,
},
flex: {
1: "1 1 0%",
auto: "1 1 auto",
initial: "0 1 auto",
inherit: "inherit",
none: "none",
2: "2 2 0%",
3: "3 3 0%",
4: "4 4 0%"
},
// height: {
// fit: "fit-content",
// full: "100%",
// screen: "100vh",
// sm: "8px",
// md: "16px",
// lg: "24px",
// xl: "48px",
// },
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};