Theme trouble with MenuItem. Only Chrome. In Firefox everithing is ok.

<div>
<AppBar
title={this.props.title}
showMenuIconButton={true}
onLeftIconButtonTouchTap={this._menuTapHandler}>
</AppBar>
<Drawer
open={this.state.open}>
<AppBar/>
<MenuItem primaryText='123' rightIcon={<Download/>}/>
</Drawer>
</div>
I have the same issue on ChromeOS.
Any clue on this? I have same issue on Chrome, Safari looks OK
Hi Guys, I found this is causes by my use of Normalize.css, to fix this, in you style sheet, do thie following, the -webkit-appearance: none; will solve the problem it used to be -webkit-appearance: button; in mormalize.css
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
-webkit-appearance: none; /* 2 */
Dupe of #4008
Most helpful comment
Hi Guys, I found this is causes by my use of Normalize.css, to fix this, in you style sheet, do thie following, the -webkit-appearance: none; will solve the problem it used to be -webkit-appearance: button; in mormalize.css
button, html [type="button"], /* 1 */ [type="reset"], [type="submit"] { -webkit-appearance: none; /* 2 */