16 lines
431 B
JavaScript
16 lines
431 B
JavaScript
module.exports = ({ addUtilities }) =>
|
|
addUtilities({
|
|
'.animate-normal': {
|
|
'animation-direction': 'normal'
|
|
},
|
|
'.animate-reverse': {
|
|
'animation-direction': 'reverse'
|
|
},
|
|
'.animate-alternate': {
|
|
'animation-direction': 'alternate'
|
|
},
|
|
'.animate-alternate-reverse': {
|
|
'animation-direction': 'alternate-reverse'
|
|
}
|
|
});
|