meshviewer/assets/icons/_icon-mixin.scss
Xaver Maierhofer cdecdd9ee7 [!!!][TASK] Refactor Scss, add Sass-lint and adjust styling
Add variables to allow easy modifications to color, font and also extending Style
2016-05-29 15:22:21 +02:00

8 lines
123 B
SCSS

@mixin icon($name, $code, $prefix: 'ion-') {
.#{$prefix}#{$name} {
&:before {
content: '#{$code}';
}
}
}