16 lines
423 B
JavaScript
16 lines
423 B
JavaScript
module.exports = ({ addUtilities }) =>
|
|
addUtilities({
|
|
'.animate-fill-none': {
|
|
'animation-fill-mode': 'none'
|
|
},
|
|
'.animate-fill-forwards': {
|
|
'animation-fill-mode': 'forwards'
|
|
},
|
|
'.animate-fill-backwards': {
|
|
'animation-fill-mode': 'backwards'
|
|
},
|
|
'.animate-fill-both': {
|
|
'animation-fill-mode': 'both'
|
|
}
|
|
});
|