Skip to content

Instantly share code, notes, and snippets.

@doubleswirve
Created November 16, 2013 03:30
Show Gist options
  • Save doubleswirve/7495562 to your computer and use it in GitHub Desktop.
Save doubleswirve/7495562 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@mixin class {
float: left;
> img {
height: 30px;
}
}
.nav {
@media (min-width: 320px) and (max-width: 480px) {
@include class;
}
@media (min-width: 320px) and (max-width: 576px) {
@include class;
}
}
@media (min-width: 320px) and (max-width: 480px) {
.nav {
float: left;
}
.nav > img {
height: 30px;
}
}
@media (min-width: 320px) and (max-width: 576px) {
.nav {
float: left;
}
.nav > img {
height: 30px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment