Skip to content

Instantly share code, notes, and snippets.

@peterwilsoncc
Last active January 4, 2016 01:49
Show Gist options
  • Select an option

  • Save peterwilsoncc/8551408 to your computer and use it in GitHub Desktop.

Select an option

Save peterwilsoncc/8551408 to your computer and use it in GitHub Desktop.
html {
color: black;
@include lte8 {
color: #111;
}
}
@mixin lte8 {
@if ( $lte8 == true ) {
@content;
}
}
html {
color: black;
}
$lte8: false;
@import "_mixins.scss";
@media screen and (min-width: 500px) {
@import "0500up.scss"
}
html {
color: black;
color: #111;
}
$lte8: true;
@import "_mixins.scss";
@import "0500up.scss"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment