tailwindcss
Version:
A utility-first CSS framework for rapidly building custom user interfaces.
22 lines (20 loc) • 375 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _default;
function _default() {
return function ({
addUtilities,
variants
}) {
addUtilities({
'.table-auto': {
'table-layout': 'auto'
},
'.table-fixed': {
'table-layout': 'fixed'
}
}, variants('tableLayout'));
};
}
;