forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/tailwindcss/lib/plugins/divideStyle.js

31 lines
751 B
JavaScript
Raw Normal View History

2021-12-13 22:28:32 +00:00
"use strict";
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'));
};
}