16 lines
487 B
JavaScript
16 lines
487 B
JavaScript
/* const { styleClass } = require('../../../utils');
|
|
|
|
module.exports = (root, opts) => {
|
|
const justifyContent = {
|
|
'justify-content-start': 'flex-start',
|
|
'justify-content-end': 'flex-end',
|
|
'justify-content-center': 'center',
|
|
'justify-content-between': 'space-between',
|
|
'justify-content-around': 'space-around',
|
|
'justify-content-evenly': 'space-evenly'
|
|
};
|
|
|
|
styleClass('justify-content', justifyContent, root, opts, true);
|
|
};
|
|
*/
|