Re: [csswg-drafts] [css-nesting] request to pick up the css-nesting proposal

Add @media to draft. Like this
```css
.foo {
  color: red;
  @media (min-width: 20rem) {
    color: blue;
    @media (max-width: 30rem) {
      color: green;
    }
  }
}
```

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

Received on Wednesday, 18 July 2018 07:19:27 UTC