decanter
Version:
Design System Tailwind CSS Preset.
23 lines (21 loc) • 418 B
JavaScript
/**
* Borderless table styles.
*/
module.exports = function () {
return function ({ addComponents }) {
const components = {
// For no borders at all.
'.table-borderless': {
'thead, tbody, tfoot': {
'tr, th, td': {
border: '0',
},
},
'thead + tbody': {
border: '0',
},
},
};
addComponents(components);
};
};