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