Skip to content

Instantly share code, notes, and snippets.

@afjlambert
Last active November 16, 2015 23:52
Show Gist options
  • Save afjlambert/c4431d7812c33c3a9512 to your computer and use it in GitHub Desktop.
Save afjlambert/c4431d7812c33c3a9512 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin for-theme($theme) {
@media (theme: $theme) {
& {
@content;
}
}
}
.Menu {
position: fixed; // or something
@include for-theme('default') {
color: #333;
}
@include for-theme('tuintuin') {
color: green;
}
}
.Menu {
position: fixed;
}
@media (theme: default) {
.Menu {
color: #333;
}
}
@media (theme: tuintuin) {
.Menu {
color: green;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment