braid-design-system
Version:
Themeable design system for the SEEK Group
15 lines (14 loc) • 512 B
JavaScript
const fileScope = require("@vanilla-extract/css/fileScope");
const css = require("@vanilla-extract/css");
fileScope.setFileScope("src/lib/components/MonthPicker/MonthPicker.css.ts", "braid-design-system");
const nativeInput = css.style({
selectors: {
"&::-webkit-inner-spin-button, &::-webkit-calendar-picker-indicator, &::-webkit-clear-button": {
display: "none",
WebkitAppearance: "none"
}
}
}, "nativeInput");
fileScope.endFileScope();
exports.nativeInput = nativeInput;
;