-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
49 lines (47 loc) · 1.15 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: [
'./components/*.js',
'./components/**/*.js',
'./utils/*.js',
'./pages/*.js',
'./pages/**/*.js',
'./pages/**/**/*.js'
],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
'sans': ['Inter', ...defaultTheme.fontFamily.sans],
'serif': [...defaultTheme.fontFamily.serif],
'mono': [...defaultTheme.fontFamily.mono],
'logo': ['Staatliches']
},
minWidth: {
'sidebar': '10rem',
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
},
extend: {
fontSize: {
'xxs': '.50rem'
},
maxHeight: {
'500px': '500px',
'50vh': '50vh'
},
minHeight: {
'768px': '768px'
},
minWidth: {
'300px': '300px'
}
},
},
variants: {
extend: {},
},
plugins: [],
}