-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (55 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
53
54
55
56
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
screens: {
xs: '320px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxlmin: '1351px',
xxlmax: { max: '1350px' }
},
fontFamily: {
display: ['Quicksand', 'sans-serif'],
body: ['Quicksand', 'sans-serif']
},
borderWidth: {
default: '1px',
'0': '0',
'2': '2px',
'4': '4px'
},
extend: {
textColor: ['hover'],
colors: {
cyan: '#9cdbff'
},
spacing: {
'96': '24rem',
'128': '32rem'
},
height: {
'84': '22rem'
},
margin: {
'-fullh': '-100vh'
}
},
inset: {
'0': 0,
'16': '16px',
'32': '32px',
'64': '64px',
'2rem': '2rem',
'3rem': '3rem'
}
},
variants: {},
plugins: []
}