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-ease-linear': {
'animation-timing-function': 'linear'
},
'.animate-ease-in': {
'animation-timing-function': 'cubic-bezier(0.4, 0, 1, 1)'
},
'.animate-ease-out': {
'animation-timing-function': 'cubic-bezier(0, 0, 0.2, 1)'
},
'.animate-ease-in-out': {
'animation-timing-function': 'cubic-bezier(0.4, 0, 0.2, 1)'
}
});