ed06ff6b09
Add variables to allow easy modifications to color, font and also extending Style
8 lines
123 B
SCSS
8 lines
123 B
SCSS
@mixin icon($name, $code, $prefix: 'ion-') {
|
|
.#{$prefix}#{$name} {
|
|
&:before {
|
|
content: '#{$code}';
|
|
}
|
|
}
|
|
}
|