feat: make error message links more obvious

- Add primary color and underline to links in error messages
- Increase font weight to 600 for better visibility
- Add hover state with color transition
- nos2x link now clearly stands out as clickable
This commit is contained in:
Gigi
2025-10-18 09:21:05 +02:00
parent c77907f87a
commit 1dc44930b4

View File

@@ -195,6 +195,18 @@
flex-shrink: 0;
}
.login-error a {
color: var(--color-primary);
text-decoration: underline;
font-weight: 600;
transition: color 0.2s ease;
}
.login-error a:hover {
color: var(--color-primary-hover);
text-decoration: underline;
}
.login-footer {
margin: 0;
text-align: center;