-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
113 lines (96 loc) · 1.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
module.exports = {
purge: ['./resources/**/*.blade.php', './resources/**/*.js'],
darkMode: false,
theme: {
container: {
center: true,
},
fontFamily: {
rubik: ['rubik', 'sans-serif'],
},
extend: {
spacing: {
'10p': '10px',
'18p': '18px',
'48p': '48px',
'16p': '16px',
'24p': '24px',
'3p': '3px',
'80p': '80px',
'32p': '32px',
'40p': '40px',
'20p': '20px',
'55p': '55px',
'38p': '38px',
'100p': '100px',
},
colors: {
black: '#161616',
white: '#fff',
grey: '#E3E6E8',
darkGrey: '#535466',
lightGrey: '#B8BFC5',
secondary: '#33354E',
},
borderRadius: {
'1/2': '50%',
'10p': '10px',
},
borderWidth: {
3: '3px',
},
zIndex: {
99: '99',
},
fontSize: {
'8p': '8px',
'9p': '9px',
'10p': '10px',
'36p': '36px',
},
minHeight: {
'200p': '200px',
'400p': '400px',
'240p': '240px',
},
maxWidth: {
'200p': '200px',
},
width: {
'1p': '1px',
},
height: {
'2p': '2px',
'60vh': '60vh',
},
flexGrow: {
2: 2,
6: 6,
},
},
},
variants: {
extend: {},
},
plugins: [
function ({ addComponents }) {
addComponents({
'.container': {
width: '92%',
'@screen sm': {
maxWidth: '100%',
},
'@screen md': {
maxWidth: '100%',
},
'@screen lg': {
maxWidth: '100%',
},
'@screen xl': {
maxWidth: '1280px',
},
},
})
},
],
}