【发布时间】:2019-07-02 10:18:35
【问题描述】:
我想更改在材质 ui 中选择时打开的弹出框高度
我尝试通过 classes 属性传递样式,但没有帮助。如何提及在选择单击时打开的组件的样式。
<Select value={contCountrySelected} onChange={(event) => this.handleControllingCountryChange(event.target.value)} styleName= {'app.fbSelectTextPos'}
inputProps={{ name: 'controllingcountry', id: 'controllingcountry'}}>
{
countryCodes.map((item) => (<MenuItem value={item.c2name} key={item.c2name}> {item.c2value} </MenuItem>
))
}
</Select>
【问题讨论】:
标签: reactjs material-ui