Skip to content

Instantly share code, notes, and snippets.

@matthewbeta
Created January 16, 2015 09:32
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 matthewbeta/cc54ae92cca6833ffa3b to your computer and use it in GitHub Desktop.
Save matthewbeta/cc54ae92cca6833ffa3b to your computer and use it in GitHub Desktop.
nesting parent-selector modifiers
/* instead of this */
.mobile {
.my-module {
color: red;
}
}
.desktop {
.my-module {
color: blue;
}
}
/* do this */
.my-module {
.mobile & {
color: red;
}
.desktop & {
color: blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment