Created
May 12, 2014 08:54
-
-
Save magsout/f9a527e7eae745a99af8 to your computer and use it in GitHub Desktop.
mixin @import
This file contains 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
/*------------------------------------*\ | |
App | |
\*------------------------------------*/ | |
.mixin | |
{ | |
@include colorTest(); | |
} |
This file contains 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
/*------------------------------------*\ | |
Main | |
\*------------------------------------*/ | |
@import "mixin"; | |
@import "app"; |
This file contains 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
/*------------------------------------*\ | |
Mixin | |
\*------------------------------------*/ | |
@mixin colorTest() | |
{ | |
color: red; | |
@content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment