-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (37 loc) · 1011 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 = {
content: [
'./src/components/**/*.{js,vue,ts}',
'./src/layouts/**/*.vue',
'./src/pages/**/*.vue',
'./src/app.vue',
'./src/error.vue',
],
darkMode: 'class',
theme: {
container: {
padding: '2rem',
},
extend: {
animation: {
wiggle: 'wiggle 3s ease-in-out infinite',
},
keyframes: {
wiggle: {
'0%': {transform: 'rotate(0deg)'},
'12%': {transform: 'rotate(-5deg)'},
'24%': {transform: 'rotate(5deg)'},
'36%': {transform: 'rotate(-5deg)'},
'48%': {transform: 'rotate(0deg)'},
'100%': {transform: 'rotate(0deg)'},
},
},
},
},
variants: {
extend: {},
},
plugins: [
// eslint-disable-next-line
require('@tailwindcss/typography'),
],
};