Open colemars opened 4 years ago
https://codesandbox.io/s/festive-nobel-v7o9j?file=/config-overrides.js
<TestComponent className={${classes.test} ${className}} />
<TestComponent className={
} />
In this case, $[classes.test} take precedence over our styled components because of the order they're being passed in. But the plugin SHOULD be adding specificity to prevent that, no?
$[classes.test}
https://codesandbox.io/s/festive-nobel-v7o9j?file=/config-overrides.js
<TestComponent className={
${classes.test} ${className}} />
In this case,
$[classes.test}
take precedence over our styled components because of the order they're being passed in. But the plugin SHOULD be adding specificity to prevent that, no?