11 lines
114 B
SCSS
11 lines
114 B
SCSS
@mixin color-svg($color) {
|
|
.stroke {
|
|
stroke: $color;
|
|
fill: none;
|
|
}
|
|
|
|
.fill {
|
|
fill: $color;
|
|
}
|
|
}
|