Last active
November 16, 2015 23:52
-
-
Save afjlambert/c4431d7812c33c3a9512 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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