Skip to content

Instantly share code, notes, and snippets.

@seven-phases-max
Created February 5, 2015 04:19
Show Gist options
  • Save seven-phases-max/26a3f76d3d2aaad33cf1 to your computer and use it in GitHub Desktop.
Save seven-phases-max/26a3f76d3d2aaad33cf1 to your computer and use it in GitHub Desktop.
#foo {
// we even put our mixins into namespace to avoid any
// possible naming conflicts for our shared variables
@primary: red;
.some-button() {
.button {
color: @primary;
}
}
.another-button() {
.button {
color: (#fff - @primary);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment