I face an issue with Select Component from Material UI, the issue it renders in a diferent way in chrome on windows rather than mac.
on mac, it works just fine but in windows see image attached
note if I remove native flag it will be working but I like how its renderer as native select
here is sample on codeSandbox
https://codesandbox.io/s/yvq524yv8z
here is the code sample
const styles = theme => ({ dropdownStyle: { backgroundColor: "lightgray" --> this change I need to make } }); <Select native value={value} onChange={this.handleChange("value")} name="value" variant="filled" classes={{ root: classes.selectEmpty, select: classes.select }} MenuProps={{ classes: { paper: classes.dropdownStyle } }} > {contracts.map((contractItem, index) => { return ( <option key={contractItem.agent_id} value={index}> {contractItem.carrier} </option> ); })} </Select> 