-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (51 loc) · 918 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
46
47
48
49
50
51
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
maxWidth: {
'15': '15%',
'20': '20%',
'30': '30%',
'40': '40%',
'50': '50vw',
'98': '98vw',
'100': '100vw',
},
minHeight: {
'0': '0',
'1/4': '25vh',
'1/2': '50vh',
'3/4': '75vh',
'100': '100vh',
},
maxHeight: {
'0': '0',
'1/4': '25vh',
'1/2': '50vh',
'3/4': '75vh',
'100': '100vh',
},
width: {
'25': '25%',
'33': '33%',
'35': '35%',
'40': '40%',
'50': '50%',
'100': '100%',
},
extend: {
colors: {
textColorH1: '#e6abe6',
},
container: {
center: true,
},
},
},
variants: {},
plugins:[],
}