- From: Sunil Pai via GitHub <sysbot+gh@w3.org>
- Date: Tue, 19 Mar 2019 10:59:13 +0000
- To: public-css-archive@w3.org
```css
$foo { color: blue; }
$foo { color: red; }
```
this would throw an error. you can't define multiple references with the same name in a module.
@bkardell's example would be rewritten as
```css
$foo {
color: yellow;
@media only screen and (max-width: 480px) {
& {
background-color: black;
}
}
}
```
--
GitHub Notification of comment by threepointone
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3714#issuecomment-474306522 using your GitHub account
Received on Tuesday, 19 March 2019 10:59:14 UTC