Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Created December 22, 2012 00:43
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blackfalcon/4356825 to your computer and use it in GitHub Desktop.
Save blackfalcon/4356825 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
.block {
width: 80em;
@media #{$mobile} {
width: 100%;
}
}
.foo {
background: orange;
@media #{$mobile} {
background: green;
}
}
.block {
width: 80em; }
.foo {
background: orange; }
@media screen and (max-width: 40em) {
.block {
width: 100%; }
.foo {
background: green; } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment