12 lines
102 B
SCSS
12 lines
102 B
SCSS
|
|
|
||
|
|
@mixin icon($type)
|
||
|
|
{
|
||
|
|
@extend .entypo-#{$type};
|
||
|
|
@extend %iconFont;
|
||
|
|
|
||
|
|
&:before
|
||
|
|
{
|
||
|
|
@content;
|
||
|
|
}
|
||
|
|
}
|