ui: improve mutation feedback and increase timeout for long-running docker ops

This commit is contained in:
2026-04-08 00:22:23 -04:00
parent e24da92e0f
commit 6e19848723
2 changed files with 24 additions and 5 deletions

View File

@@ -118,3 +118,12 @@
from { opacity: 0.5; }
to { opacity: 1; }
}
.spin {
animation: spin 1.5s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}