Created
August 23, 2014 00:01
-
-
Save yodasw16/0b01550d0cd8d3166695 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.0) | |
// Compass (v1.0.0) | |
// ---- | |
$namespace: null !default; | |
// $namespace: NS; | |
%button { | |
/* button stuff */ | |
} | |
@if $namespace { | |
.#{$namespace}-btn { | |
@extend %button; | |
} | |
} @else { | |
.btn { | |
@extend %button; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.btn { | |
/* button stuff */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment