Disable hover styling for touches

This commit is contained in:
Chi Vinh Le
2018-07-16 18:05:19 -03:00
parent 35ab62af92
commit f71d449079
2 changed files with 11 additions and 4 deletions
@@ -52,7 +52,7 @@ class Button extends React.Component<InnerProps> {
return (
<BaseButton
className={rootClassName}
classes={pick(classes, "keyboardFocus")}
classes={pick(classes, "keyboardFocus", "mouseHover")}
{...rest}
/>
);