- From: Adam Argyle via GitHub <sysbot+gh@w3.org>
- Date: Thu, 06 May 2021 22:43:15 +0000
- To: public-css-archive@w3.org
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