Skip to content

Commit

Permalink
fix: stroke-offset
Browse files Browse the repository at this point in the history
  • Loading branch information
trovster committed Oct 5, 2023
1 parent c740d0a commit 3395315
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/FitnessRing.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default class FitnessRing extends HTMLElement {
stroke-dashoffset="${this.percentage(
this.getAttribute('move-total'),
this.getAttribute('move-goal')
)}"
) - 1}"
stroke-dasharray="${this.percentage(
this.getAttribute('move-total'),
this.getAttribute('move-goal')
Expand All @@ -198,7 +198,7 @@ export default class FitnessRing extends HTMLElement {
stroke-dashoffset="${this.percentage(
this.getAttribute('exercise-total'),
this.getAttribute('exercise-goal')
)}"
) - 1}"
stroke-dasharray="${this.percentage(
this.getAttribute('exercise-total'),
this.getAttribute('exercise-goal')
Expand All @@ -215,7 +215,7 @@ export default class FitnessRing extends HTMLElement {
stroke-dashoffset="${this.percentage(
this.getAttribute('stand-total'),
this.getAttribute('stand-goal')
)}"
) - 1}"
stroke-dasharray="${this.percentage(
this.getAttribute('stand-total'),
this.getAttribute('stand-goal')
Expand Down

0 comments on commit 3395315

Please sign in to comment.