Skip to content

Commit

Permalink
fix(circular-progress): use theme.property() for color mixins
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 322404136
  • Loading branch information
allan-chen authored and copybara-github committed Jul 21, 2020
1 parent abcdbcf commit 7bd5075
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mdc-circular-progress/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
.mdc-circular-progress__determinate-circle,
.mdc-circular-progress__indeterminate-circle-graphic {
@include feature-targeting-mixins.targets($feat-color) {
@include theme-mixins.prop('stroke', $color);
@include theme-mixins.property(stroke, $color);
}
}
}
Expand All @@ -200,7 +200,7 @@
.mdc-circular-progress__color-#{$i}
.mdc-circular-progress__indeterminate-circle-graphic {
@include feature-targeting-mixins.targets($feat-color) {
stroke: nth($colors, $i);
@include theme-mixins.property(stroke, nth($colors, $i));
}
}
}
Expand Down

0 comments on commit 7bd5075

Please sign in to comment.