From 1dc44930b4e4ae077d4e03e5905682cd1eab7f2f Mon Sep 17 00:00:00 2001 From: Gigi Date: Sat, 18 Oct 2025 09:21:05 +0200 Subject: [PATCH] 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 --- src/styles/components/login.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/styles/components/login.css b/src/styles/components/login.css index 4bb9e5f6..d14b7ac7 100644 --- a/src/styles/components/login.css +++ b/src/styles/components/login.css @@ -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;