Re: [csswg-drafts] [css-mediaqueries] “inner” `@media` rules

Isn't it basically this?

```css
:root
{
        --button: {
                color: red;
        }
}

@media screen {
        :root {
                --button: {
                        background-color: blue;
                }
        }
}
```

(Then you use with `@apply`)

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

Received on Saturday, 10 December 2016 20:25:52 UTC