v0.7.19 - Implement automatic relay connection after login with authentication error handling

This commit is contained in:
Your Name
2025-10-15 15:41:18 -04:00
parent 87325927ed
commit 6320436b88
5 changed files with 431 additions and 622 deletions

View File

@@ -326,6 +326,24 @@ button:disabled {
border-color: var(--accent-color);
}
/* Authentication warning message */
.auth-warning-message {
margin-bottom: 15px;
padding: 12px;
background-color: #fff3cd;
border: 1px solid #ffeaa7;
border-radius: var(--border-radius);
color: #856404;
}
.warning-content {
line-height: 1.4;
}
.warning-content strong {
color: #d68910;
}
.config-table {
border: 1px solid var(--border-color);
border-radius: var(--border-radius);