Can multiple Mixin's be passed into an include in sass.
example
@mixin something{
//css declarations
}
@mixin somethingElse{
//css declarations
}
Can I do the following
.class{
@include something,somethingElse;
}
or does it have to be
.class{
@include something;
@include somethingElse;
}