Skip to content

Instantly share code, notes, and snippets.

@Undistraction
Created September 10, 2014 17:49
Show Gist options
  • Save Undistraction/5ed95f0f46bf33a4bab8 to your computer and use it in GitHub Desktop.
Save Undistraction/5ed95f0f46bf33a4bab8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.3)
// Compass (v1.0.1)
// Breakpoint (v2.5.0)
// ----
@import "breakpoint";
$medium-up: min-width 600px;
.example
{
background: red;
@include breakpoint($medium-up) {
background: green;
}
}
.example {
background: red;
}
@media (min-width: 600px) {
.example {
background: green;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment