You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which generates a random class name for my button component. Problem is, due to css rules specificity the global rule is more specific than the one generated for the component and so the custom font-size is ignored.
Other css-in-js handled that problem with a custom namespace that could be added to every class, like this one for stylis.
It could be possible to implement something like that for nano-css? Maybe it could be enough to just allow to pass a custom stylis instance to the stylis addon, which could also be useful for other reasons.
Thank you.
The text was updated successfully, but these errors were encountered:
Hello, I have a problem using nano-css in combination with global pre-existing styles.
For example:
Then I create a button with
jsx
:Which generates a random class name for my button component. Problem is, due to css rules specificity the global rule is more specific than the one generated for the component and so the custom font-size is ignored.
Other css-in-js handled that problem with a custom namespace that could be added to every class, like this one for stylis.
It could be possible to implement something like that for
nano-css
? Maybe it could be enough to just allow to pass a customstylis
instance to the stylis addon, which could also be useful for other reasons.Thank you.
The text was updated successfully, but these errors were encountered: