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
The nested selector will be expanded out to something like:
.my-app_css__my-style th, td
Which will apply the given style globally to all td elements. Rather, I would expect the resultant selector to have the base class name prepended to each selector group in the list, eg:
If one has a style defined in the following manner:
The nested selector will be expanded out to something like:
.my-app_css__my-style th, td
Which will apply the given style globally to all
td
elements. Rather, I would expect the resultant selector to have the base class name prepended to each selector group in the list, eg:.my-app_css__my-style th, .my-app_css__my-style td
The text was updated successfully, but these errors were encountered: