Replies: 1 comment 2 replies
-
Looking into it I'm now curious why the plugin uses addVariant(
`group-${variantName}`,
mapSelector(selectors, (selector) =>
wrapSelector(selector, (s) => `:merge(.group)${s.slice(1)} &`),
),
);
addVariant(
`peer-${variantName}`,
mapSelector(selectors, (selector) =>
wrapSelector(selector, (s) => `:merge(.peer)${s.slice(1)} ~ &`),
),
); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is the resolved CSS:
For comparison this is without
group-
:Group modifier does work with other states, just not this one. Here is
group-disabled
Beta Was this translation helpful? Give feedback.
All reactions