wix-style-react
Version:
wix-style-react
18 lines • 435 B
JavaScript
module.exports.gap = args => {
var gap = args[0];
return {
'&': {
gap
},
'@supports (not (translate: none)) and (not (appearance: auto))': {
'&': {
gap: 0,
margin: "calc(".concat(gap, " / -2) calc(").concat(gap, " / -2);")
},
'& > *': {
margin: "calc(".concat(gap, " / 2) calc(").concat(gap, " / 2);")
}
}
};
};
//# sourceMappingURL=flex-gap-polyfilled.js.map