feature: bili-toy cloud fallback local

This commit is contained in:
Vick Scarlet
2026-08-16 20:06:16 +08:00
committed by 神戸小鳥
parent 907d0e7d09
commit 2d53a6ca33
4 changed files with 67 additions and 16 deletions
+12 -3
View File
@@ -40,6 +40,13 @@
width: 100%;
> button { flex: 1 0; }
}
&.loading {
display: flex;
justify-content: center;
align-items: center;
> * { width: auto; }
animation: pulse 1.8s ease-in-out infinite;
}
}
.saving {
position: fixed;
@@ -47,9 +54,11 @@
left: 0;
opacity: 0;
user-select: none;
transition: opacity 0.3s;
&.active {
opacity: 1;
transition: opacity 0.1s;
animation: pulse 1.8s ease-in-out infinite;
}
}
@keyframes pulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}