22 lines
381 B
JavaScript
22 lines
381 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = _default;
|
||
|
|
||
|
function _default() {
|
||
|
return function ({
|
||
|
addUtilities,
|
||
|
variants
|
||
|
}) {
|
||
|
addUtilities({
|
||
|
'.box-border': {
|
||
|
'box-sizing': 'border-box'
|
||
|
},
|
||
|
'.box-content': {
|
||
|
'box-sizing': 'content-box'
|
||
|
}
|
||
|
}, variants('boxSizing'));
|
||
|
};
|
||
|
}
|