-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (36 loc) · 1.12 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
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
keyframes: {
'scale-up': {
'0%, 100%': {transform: 'scale(1.0)'},
'50%': {transform: 'scale(1.05)'},
},
flip: {
'0%': {transform: 'rotateX(-180deg)'},
'100%': {transform: 'rotateX(0deg)'}
},
flipTwo: {
'0%, 50%': {transform: 'rotateX(-180deg)'},
'100%': {transform: 'rotateX(0deg)'}
},
flipThree: {
'0%, 66%': {transform: 'rotateX(-180deg)'},
'100%': {transform: 'rotateX(0deg)'}
}
},
animation: {
'scale-up': 'scale-up .3s linear 1',
flip: 'flip 1s ease-in-out 1',
flipTwo: 'flip 2s ease-in-out 1',
flipThree: 'flip 3s ease-in-out 1',
}
},
},
plugins: [],
}