Custom animation utilities & keyframes.
theme: {
extend: {
keyframes: {
'bounce-in': {
'0%': { transform: 'scale(0)', opacity: '0' },
'60%': { transform: 'scale(1.1)', opacity: '1' },
'100%': { transform: 'scale(1)' },
}
},
animation: {
'bounce-in': 'bounce-in 600ms cubic-bezier(0.34, 1.56, 0.64, 1)',
}
}
}