-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.01 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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
'./resources/assets/js/**/*.vue',
'./resources/**/*.js',
'./resources/views/**/*.blade.php'
],
theme: {
extend: {
screens: {
xxl: '1440px' // 90rem
},
borderRadius: {
xl: '.75rem',
'2xl': '1rem',
},
boxShadow: {
xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
},
screens: {
sm: '576px', // 36rem
md: '768px', // 48rem
lg: '1056px', // 66rem
xl: '1200px', // 75rem
xxl: '1440px' // 90rem
},
spacing: {
68: '17rem',
72: '18rem',
80: '20rem',
88: '22rem',
96: '24rem',
128: '32rem'
},
width: {
md: '708px',
lg: '900px',
xl: '1140px',
'2xl': '1320px'
},
zIndex: {
60: '60'
}
}
},
variants: {},
plugins: [],
}