Fix sync progress bar animation

This commit is contained in:
2026-01-26 14:21:18 +13:00
parent b93b41713a
commit ab27ebfadf
2 changed files with 14 additions and 6 deletions

View File

@@ -1 +1 @@
2601261358
261261420

View File

@@ -1326,6 +1326,17 @@ button span {
.progress-indeterminate .progress-fill {
position: absolute;
width: 100%;
left: 0;
top: 0;
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0),
var(--accent-2),
var(--accent-3),
rgba(255, 255, 255, 0)
);
background-size: 200% 100%;
animation: progress-indeterminate 1.6s ease-in-out infinite;
}
@@ -1509,13 +1520,10 @@ button span {
@keyframes progress-indeterminate {
0% {
transform: translateX(-50%);
}
50% {
transform: translateX(120%);
background-position: 200% 0;
}
100% {
transform: translateX(-50%);
background-position: -200% 0;
}
}