Skip to content

Instantly share code, notes, and snippets.

@beardyco
Created July 3, 2015 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beardyco/d1536091a6f2560b2ec3 to your computer and use it in GitHub Desktop.
Save beardyco/d1536091a6f2560b2ec3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$small: "(max-width : 767px)";
.test {
display: block;
@media #{$small} {
display: none;
}
}
.test {
@media #{$small} {
display: none;
}
display: block;
}
.test {
display: block;
}
@media (max-width: 767px) {
.test {
display: none;
}
}
.test {
display: block;
}
@media (max-width: 767px) {
.test {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment