Use our tailwind plugin from npm

This commit is contained in:
Cagatay Civici 2024-05-21 10:03:55 +03:00
parent c5ebd68b74
commit d5493601b6
13 changed files with 12 additions and 427 deletions

View file

@ -1,15 +0,0 @@
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)'
}
});