-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
35 lines (35 loc) · 937 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
module.exports = {
theme: {
extend: {
inset: {
'10': '10px',
'20': '20px',
'30': '30px',
'40': '40px',
'50': '50px',
'60': '60px',
'70': '70px',
'80': '80px',
},
colors: {
primary: '#ff6347'
},
minWidth: {
'1/3': '33.33333333%',
},
maxWidth: {
'1/3': '33.33333333%',
},
},
},
variants: {
margin: ['responsive', 'first', 'last', 'hover'],
borderColor: ['responsive', 'hover', 'focus'],
borderRadius: ['responsive', 'hover', 'focus'],
borderWidth: ['responsive', 'hover', 'focus'],
width: ['responsive', 'hover', 'focus'],
},
plugins: [
require('tailwindcss-transitions')(),
]
}