14 lines
359 B
JavaScript
14 lines
359 B
JavaScript
/* const { styleClass } = require('../../../utils');
|
|
|
|
module.exports = (root, opts) => {
|
|
const fill = {
|
|
'animation-fill-none': 'none',
|
|
'animation-fill-forwards': 'forwards',
|
|
'animation-fill-backwards': 'backwards',
|
|
'animation-fill-both': 'both'
|
|
};
|
|
|
|
styleClass('animation-fill-mode', fill, root, opts, true);
|
|
};
|
|
*/
|