Explanation
Extends animations with custom keyframes and timing
Examples
Custom slow spin animation
// tailwind.config.js
module.exports = {
theme: {
extend: {
animation: {
'spin-slow': 'spin 3s linear infinite',
}
}
}
}