feat: left-align error message text

- Add text-align: left to login-error
- Change align-items to flex-start for better multi-line text alignment
- Icon now aligns to top instead of center
This commit is contained in:
Gigi
2025-10-18 09:35:04 +02:00
parent 973409e82a
commit 9378b3c9a9

View File

@@ -180,7 +180,7 @@
.login-error {
display: flex;
align-items: center;
align-items: flex-start;
gap: 0.75rem;
padding: 0.875rem 1rem;
background: rgba(251, 191, 36, 0.1);
@@ -189,6 +189,7 @@
color: var(--color-text-secondary);
font-size: 0.9rem;
line-height: 1.5;
text-align: left;
}
.login-error svg {