RaptureReady
New Member
I'm getting errors compiling my sass files using media query mixins. I followed several tutorials, but it won't compile. I'm using \[code\]Sass 3.3.0.alpha.67 (Bleeding Edge)\[/code\].Here's my code\[code\]/* Included at the end */@mixin mobile-only { @media (max-width : 320px) { @content; }}/* Included where the rest of my sass is */body { @include mobile-only { display: none; } }\[/code\]I'm using scout to compile and watch for changes. Is there anything else I need to be doing?