Created a tailwind plugin

This commit is contained in:
Cagatay Civici 2024-05-20 00:46:35 +03:00
parent 1478b368f3
commit affd109498
11 changed files with 429 additions and 32 deletions

View file

@ -0,0 +1,15 @@
module.exports = ({ addUtilities }) =>
addUtilities({
'.animate-normal': {
'animation-direction': 'normal'
},
'.animate-reverse': {
'animation-direction': 'reverse'
},
'.animate-alternate': {
'animation-direction': 'alternate'
},
'.animate-alternate-reverse': {
'animation-direction': 'alternate-reverse'
}
});