我正在尝试删除 Material UI 文本字段中的自上而下的箭头。
这是代码:
const theme = createMuiTheme({
MuiInput: {
root: {
"&::-webkit-outer-spin-button, &::-webkit-inner-spin-button": {
"-webkit-appearance": "none",
margin: 0
}
}
}
})
Run Code Online (Sandbox Code Playgroud)
我哪里出错了?