tailwindcss
Version:
A utility-first CSS framework for rapidly building custom user interfaces.
31 lines (29 loc) • 751 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _default;
function _default() {
return function ({
addUtilities,
variants
}) {
addUtilities({
'.divide-solid > :not([hidden]) ~ :not([hidden])': {
'border-style': 'solid'
},
'.divide-dashed > :not([hidden]) ~ :not([hidden])': {
'border-style': 'dashed'
},
'.divide-dotted > :not([hidden]) ~ :not([hidden])': {
'border-style': 'dotted'
},
'.divide-double > :not([hidden]) ~ :not([hidden])': {
'border-style': 'double'
},
'.divide-none > :not([hidden]) ~ :not([hidden])': {
'border-style': 'none'
}
}, variants('divideStyle'));
};
}
;