Skip to content

Instantly share code, notes, and snippets.

@nadavspi
Created January 5, 2016 21:53
Show Gist options
  • Save nadavspi/6089736bd3736aa91bb6 to your computer and use it in GitHub Desktop.
Save nadavspi/6089736bd3736aa91bb6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
@mixin ohgodwhy {
%red {
color: red;
border-bottom: 2px solid red;
}
%green {
color: green;
bordor-bottom: 2px solid green;
}
.wat,
.ok {
@extend %red;
}
.why {
@extend %green;
}
}
.something {
@include ohgodwhy;
}
.otherthing {
@include ohgodwhy;
}
.something .wat,
.something .ok {
color: red;
border-bottom: 2px solid red;
}
.something .why {
color: green;
bordor-bottom: 2px solid green;
}
.otherthing .wat,
.otherthing .ok {
color: red;
border-bottom: 2px solid red;
}
.otherthing .why {
color: green;
bordor-bottom: 2px solid green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment