You can then reference these keyframes by name in the animation section of your theme configuration:
tailwind.config.js
module.exports = {
theme: {
extend: {
animation: {
wiggle: 'wiggle 1s ease-in-out infinite',
}
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
Arbitrary values
0 Comments