Skip to content

Instantly share code, notes, and snippets.

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