Skip to content

Commit

Permalink
fix: rounding error (#33721)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boomkop3 authored Sep 26, 2024
1 parent bb93fd0 commit af21054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspnetcore/blazor/fundamentals/startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ The following demonstration uses the loading progress indicator found in apps cr
.loading-progress circle:last-child {
stroke: #1b6ec2;
stroke-dasharray:
calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8),
calc(3.142 * var(--blazor-load-percentage, 0%) * 0.8),
500%;
transition: stroke-dasharray 0.05s ease-in-out;
}
Expand Down

0 comments on commit af21054

Please sign in to comment.