- From: Romain Menke via GitHub <sysbot+gh@w3.org>
- Date: Thu, 25 Apr 2024 10:35:24 +0000
- To: public-css-archive@w3.org
So authors could (but likely won't) write :
```css
:root {
@group {
--color-a: pink;
@media screen { --color-a: red; }
--color-b: lime;
}
}
```
Which would be equivalent to :
```css
:root {
@group {
--color-a: pink;
@media screen { --color-a: red; }
@group { --color-b: lime; }
}
}
```
--
GitHub Notification of comment by romainmenke
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/10234#issuecomment-2076876068 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 25 April 2024 10:35:25 UTC