-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 971 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
36
37
38
39
40
41
42
module.exports = {
purge: [
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}'
],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
height: {
120: '30rem'
},
zIndex: {
'-1': '-1'
},
backgroundColor: {
'blue-gray': '#e4e9f1'
},
borderColor: {
'light-blue': '#f8f9fb'
},
borderWidth: {
3: '3px'
},
width: {
1.25: '0.313rem'
},
inset: {
15: '3.813rem'
},
animation: {
'ping-slow': 'ping 4s cubic-bezier(0, 0, 0.2, 1) infinite'
}
}
},
variants: {
extend: {}
},
plugins: []
}