style update
This commit is contained in:
parent
fe3b957a47
commit
0986803583
8 changed files with 49 additions and 23 deletions
|
@ -10,7 +10,17 @@ module.exports = {
|
|||
extend: {
|
||||
colors: {
|
||||
...colors,
|
||||
}
|
||||
},
|
||||
keyframes: {
|
||||
shake: {
|
||||
'0%, 100%': { transform: 'translateX(0)' },
|
||||
'25%': { transform: 'translateX(-30px)' },
|
||||
'75%': { transform: 'translateX(30px)' },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
shake: 'shake 0.2s ease-in-out infinite',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
|
|
Reference in a new issue