修复更新下载加载动画
Project CI / Backend tests (pull_request) Failing after 13s
Project CI / Repository checks (pull_request) Failing after 14s
Project CI / Frontend tests (pull_request) Successful in 3m22s
Project CI / Native shell tests (pull_request) Failing after 19m10s

为下载遮罩加载图标添加持续旋转动画
This commit is contained in:
2026-09-01 17:01:39 +08:00
parent de3dbd330e
commit 72d972c37a
+10
View File
@@ -110,6 +110,16 @@ body {
place-items: center;
}
.app-update-progress-icon .is-spinning {
animation: app-update-spin 0.9s linear infinite;
}
@keyframes app-update-spin {
to {
transform: rotate(360deg);
}
}
.app-update-progress-dialog h2,
.app-update-progress-dialog p,
.app-update-progress-dialog small {