Re: [csswg-drafts] [css-nesting] simpler embedding of media queries (#5805)

Nice, I've been doing this but it'd be nice not to have to 👍🏻 

```css
a {
  ...
  @media (prefers-reduced-motion: no-preference) { & {
    transition: outline-offset .25s ease;
  }}
}
```

vs

```css
a {
  ...
  @media (prefers-reduced-motion: no-preference) {
    transition: outline-offset .25s ease;
  }
}
```

-- 
GitHub Notification of comment by argyleink
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/5805#issuecomment-833922193 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Thursday, 6 May 2021 22:43:19 UTC