primevue-mirror/components/lib/props/style/height/index.js

19 lines
440 B
JavaScript
Raw Normal View History

2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../utils');
const { addFixedSize } = require('../base/size');
module.exports = (root, opts) => {
let heights = {
'h-full': '100%',
'h-screen': '100vh',
'h-auto': 'auto',
'h-min': 'min-content',
'h-max': 'max-content',
'h-fit': 'fit-content'
};
addFixedSize(heights, 'h-', opts);
styleClass('height', heights, root, opts, true);
};
*/