I\'m getting errors compiling my sass files using media query mixins. I followed several tutorials, but it won\'t compile. I\'m using Sass 3.3.0.alpha.67 (Bleeding Edg
Sass 3.3.0.alpha.67 (Bleeding Edg
Doesn't seem to be an issue anymore. The slightly modified code is explained in this codepen http://codepen.io/danielcgold/pen/RRNrPQ.
@mixin start-desktop-size { @media (min-width: 1024px) { @content; } } body { @include start-desktop-size { background: red; } }