Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@AgtLucas
Forked from chriseppstein/0_namespacing.scss
Created May 26, 2013 14:29
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 AgtLucas/5652955 to your computer and use it in GitHub Desktop.
Save AgtLucas/5652955 to your computer and use it in GitHub Desktop.
mymodule {
@at-root {
.#{&}-header { ... }
.#{&}-footer { ... }
.#{&}-body {
a { ... }
span { ... }
p { ... }
}
}
}
.mymodule-header { ... }
.mymodule-footer { ... }
.mymodule-body a { ... }
.mymodule-body span { ... }
.mymodule-body p { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment