Skip to content

Instantly share code, notes, and snippets.

@thedaviddias
Created July 10, 2014 21:48
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 thedaviddias/2039683de516fc21336e to your computer and use it in GitHub Desktop.
Save thedaviddias/2039683de516fc21336e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
$themeName: Z;
@mixin theme($themeName) {
@if $themeName == z {
@content;
}
@if $themeName == y {
@content;
}
}
.wrapper {
@include theme(z) {
border-top: 10px solid green;
}
@include theme(y) {
border-top: 10px solid blue;
}
}
.wrapper {
border-top: 10px solid green;
border-top: 10px solid blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment