This commit is contained in:
tugcekucukoglu 2024-05-21 10:27:14 +03:00
parent 6fa2a75d5c
commit 83d946a4d9
10 changed files with 426 additions and 0 deletions

View file

@ -0,0 +1,15 @@
module.exports = ({ addUtilities }) =>
addUtilities({
'.animate-fill-none': {
'animation-fill-mode': 'none'
},
'.animate-fill-forwards': {
'animation-fill-mode': 'forwards'
},
'.animate-fill-backwards': {
'animation-fill-mode': 'backwards'
},
'.animate-fill-both': {
'animation-fill-mode': 'both'
}
});