-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.17 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
57
module.exports = {
purge: {
mode: 'all',
preserveHtmlElements: false,
content: ['./src/**/*', './src/**/*.html', './src/**/*.js', './node_modules/flatpickr/**/*.js'],
},
darkMode: false,
from: undefined,
theme: {
extend: {
colors: {
my: {
'3d3d3d': '#3d3d3d',
ebebeb: '#ebebeb',
},
},
height: {
'2px': '2px',
'52px': '52px',
'82px': '82px',
'420px': '420px',
'540px': '540px',
'600px': '600px',
},
minHeight: {
'225px': '225px',
'350px': '350px',
},
maxHeight: {
none: 'none',
'550px': '550px',
},
width: {
'552px': '552px',
},
gridTemplateColumns: {
'fill300px/1fr': 'repeat(auto-fill, minmax(300px, 1fr));',
},
flex: {
'basis-1/2': '50%',
},
transitionProperty: {
'max-height': 'max-height',
},
},
fontFamily: {
main: ['Montserrat', 'sans-serif'],
icon: ['fontello', 'Montserrat', 'sans-serif'],
},
},
variants: {
extend: {
backgroundColor: ['active'],
},
},
plugins: [],
};