UNPKG

wix-style-react

Version:
37 lines 860 B
module.exports = { // Applies the same box-sizing on all content and root boxSizingMixin: function boxSizingMixin(boxSizing) { return { boxSizing: boxSizing, '*': { boxSizing: boxSizing } }; }, // Sets color of an input placeholder placeholderMixin: function placeholderMixin(color) { return { '&::-webkit-input-placeholder': { color: color }, '&:-moz-placeholder': { color: color }, '&::-moz-placeholder': { color: color }, '&:-ms-input-placeholder': { color: "".concat(color, " !important") } }; }, // Sets the border radius borderRadiusMixin: function borderRadiusMixin(borderRadius) { return { borderRadius: borderRadius, '&:-webkit-autofill': { borderRadius: borderRadius } }; } };