-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
77 lines (77 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// tailwind.config.js
module.exports = {
theme: {
extend: {
borderWidth: {
'5': '5px'
},
colors: {
yellow: {
'400': '#ffd400'
}
},
height: {
'screen-1/10': '10vh',
'screen-1/8': '12.5vh',
'screen-1/5': '20vh',
'screen-1/4': '25vh',
'screen-1/3': '33vh',
'screen-1/2': '50vh'
},
width: {
'screen-1/10': '10vw',
'screen-1/8': '12.5vw',
'screen-1/5': '20vw',
'screen-1/4': '25vw',
'screen-3/4': '75vw',
'screen-1/3': '33vw',
'screen-1/2': '50vw',
'1/8': '12.5%'
},
maxWidth: {
'screen-1/10': '10vw',
'screen-1/8': '12.5vw',
'screen-1/4': '25vw',
'screen-3/4': '75vw',
'screen-1/3': '33vw',
'screen-1/2': '50vw',
},
zIndex: {
'5': '5'
},
leading: {
'zero': '0',
'half': '0.5'
}
},
fontFamily: {
'sans': 'Bebas Neue, sans-serif',
'serif': 'Open Sans, sans-serif'
},
screens: {
'sm': '600px',
'md': '900px',
'lg': '1024px',
'xl': '1400px',
'xxl': '1680px',
'print': {'raw': 'print'},
}
},
plugins: [],
variants: {},
content: [
'./index.html',
'./src/js/**/*.vue'
],
safelist: [
'autocomplete',
'printblock',
'avoidbreak'
],
future: {
defaultLineHeights: true,
standardFontWeights: true,
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
},
}