14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
|
/* const { styleClass } = require('../../utils');
|
||
|
|
||
|
module.exports = (root, opts) => {
|
||
|
const bottom = {
|
||
|
'bottom-auto': 'auto',
|
||
|
'bottom-0': '0px',
|
||
|
'bottom-50': '50%',
|
||
|
'bottom-100': '100%'
|
||
|
};
|
||
|
|
||
|
styleClass('bottom', bottom, root, opts, true);
|
||
|
};
|
||
|
*/
|