primevue-mirror/components/lib/props/style/overflow/properties/y.js

14 lines
340 B
JavaScript

/* const { styleClass } = require('../../../utils');
module.exports = (root, opts) => {
const overflowY = {
'overflow-y-auto': 'auto',
'overflow-y-hidden': 'hidden',
'overflow-y-visible': 'visible',
'overflow-y-scroll': 'scroll'
};
styleClass('overflow-y', overflowY, root, opts, true);
};
*/