This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This fixes issues with: | |
- devices that incorrectly state they support hover (Samsung Galaxy Note 9, SM-N960F, Android 8.1, Chrome 73) | |
- devices that do not support media queries for hover, but they are enabled by default in Material-UI | |
*/ | |
export default { | |
onProcessStyle(style, rule) { | |
if (rule.type !== 'style') return style; | |
let newProps = []; |
OlderNewer