fix: reconnect on ws failure
This commit is contained in:
parent
84cb4e5e78
commit
27b3658e1d
5 changed files with 430 additions and 3 deletions
|
|
@ -75,4 +75,14 @@
|
|||
.error-message {
|
||||
@apply p-4 bg-red-900/50 border border-red-500 rounded-lg text-red-200;
|
||||
}
|
||||
|
||||
/* Reconnection overlay spinner animation */
|
||||
.reconnect-spinner {
|
||||
animation: reconnect-pulse 1.5s ease-in-out infinite;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes reconnect-pulse {
|
||||
0%, 100% { opacity: 1; }
|
||||
50% { opacity: 0.5; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue