14 lines
334 B
SCSS
Vendored
14 lines
334 B
SCSS
Vendored
@mixin circle-progress-varient ($parent, $color) {
|
|
#{$parent} {
|
|
svg {
|
|
.circle-progress-value {
|
|
stroke: $color;
|
|
stroke-linecap: round;
|
|
}
|
|
.circle-progress-text {
|
|
fill: $color;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
} |