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
I think there is two problemes with one file components' styles:
styles are added after exisiting ones in the head. I think styles should be placed on top of the head. They'll acte more as "default styles" for component.
attribute selectors don't replace selectors but are added to them causing more specificity.
The second point could be more tricky to solve as you can't simply replace all selectors by a corresponding attribute selector (contextual selectors for eg). Here two ideas (failing solution):
Maybe a solution could be to only replace class selectors (and adding rvcuid to those).
Maybe allowing to manually specify temporary rvcuid which will be replaced in both element and selectors with a "strongest" one.
The text was updated successfully, but these errors were encountered:
I think there is two problemes with one file components' styles:
The second point could be more tricky to solve as you can't simply replace all selectors by a corresponding attribute selector (contextual selectors for eg). Here two ideas (failing solution):
The text was updated successfully, but these errors were encountered: