Skip to content

Instantly share code, notes, and snippets.

@codingdesigner
Created February 14, 2013 15:15
Show Gist options
  • Save codingdesigner/4953464 to your computer and use it in GitHub Desktop.
Save codingdesigner/4953464 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
// Sass v3.2.5
// Breakpoint v1.3
@import "breakpoint";
// Sass v3.2.5
// Breakpoint v1.3
// @import "breakpoint";
$bp1: 30em;
$bp2: min-height 28em;
.nest {
@include breakpoint($bp1) {
color: red;
@include breakpoint($bp2) {
background-color: yellow;
}
}
}
@media (min-width: 30em) {
.nest {
color: red;
}
}
@media (min-width: 30em) and (min-height: 28em) {
.nest {
background-color: yellow;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment