fix: rounding error (#33721)

pull/33723/head
Boomkop3 2024-09-26 15:26:39 +02:00 committed by GitHub
parent bb93fd024f
commit af21054d7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}