Skip to content

Instantly share code, notes, and snippets.

@rogeruiz
Created May 25, 2012 18:03
Show Gist options
  • Select an option

  • Save rogeruiz/2789540 to your computer and use it in GitHub Desktop.

Select an option

Save rogeruiz/2789540 to your computer and use it in GitHub Desktop.
Examples of a Mixin with Ampersands
@mixin augmented-inner-mixin($augmentedClassName: arnold, $nestedClassName: foo) {
&.#{$augmentedClassName} { //div.matt
margin: 0 auto
.#{$nestedClassName} {
padding: 100px;
}
}
}
div {
@include augmented-inner-mixin(matt);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment