mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
15 lines
431 B
JavaScript
15 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'
|
|
}
|
|
});
|