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,11 @@
module.exports = ({ matchUtilities, theme }) =>
matchUtilities(
{
'animate-duration': (value) => ({
'animation-duration': value
})
},
{
values: theme('animationDuration')
}
);