Minor Changes
-
#1702
48a9cafThanks @bschlenk! - Allow:whereand:isinselectorsif all selectors target&EXAMPLE USAGE:
const example = style({ color: 'red', selectors: { // Valid: all selectors in the list target `example` ':is(h1 > &, h2 > &)': { color: 'blue' } // Invalid: the second selector in the list does not target `example` ':is(h1 > &, h2)': { color: 'blue' } } });