Show progress in range calibration modal and show warning when calibration failed

This commit is contained in:
Mathias Malmqvist
2025-09-10 01:59:51 +02:00
committed by dualshock-tools
parent 7a52f1eab8
commit 68bfe1388b
4 changed files with 248 additions and 10 deletions

View File

@@ -92,3 +92,13 @@ dl.row dd {
.accordion-header:hover .skip-btn {
opacity: 1;
}
/* Blinking animation for range calibration alert */
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0.3; }
}
.blink-text {
animation: blink 1s infinite;
}