Skip to content

Instantly share code, notes, and snippets.

@nex3
Created October 3, 2012 17: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 nex3/3828473 to your computer and use it in GitHub Desktop.
Save nex3/3828473 to your computer and use it in GitHub Desktop.
$ ./bin/sass --version
Sass 3.2.1.820b704 (Media Mark)
$ ./bin/sass --scss <<SCSS
> .no-gutter { margin-left: 0; }
> .no-inner-gutter > div, .no-inner-gutter > p {@extend .no-gutter;}
> SCSS
.no-gutter, .no-inner-gutter > div, .no-inner-gutter > p {
margin-left: 0; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment