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-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)'
}
});