🎨 Update spinner color and add styling for error messages

This commit is contained in:
2026-01-28 20:01:17 +00:00
parent d65039470e
commit a82a16f8e2

View File

@@ -767,11 +767,18 @@ onMounted(() => {
gap: 1rem;
}
.error-message {
color: #c0392b;
font-weight: 600;
max-width: 500px;
line-height: 1.6;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-top: 4px solid #667eea;
border-radius: 50%;
animation: spin 1s linear infinite;
}