Skip to content

Commit 9281662

Browse files
fix: improve link visibility on logout screen when light theme is sel… (#1905)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 3d6c99b commit 9281662

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/mail/app/(auth)/login/login-client.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,19 +303,19 @@ function LoginClientContent({ providers, isProd }: LoginClientProps) {
303303
)}
304304
</div>
305305
</div>
306-
<a href={'/'}>Return home</a>
306+
<a href={'/'} className='text-white hover:text-gray-200'>Return home</a>
307307

308308
<footer className="w-full px-6 py-4">
309309
<div className="mx-auto flex max-w-6xl items-center justify-center gap-6">
310310
<a
311311
href="/terms"
312-
className="text-[10px] text-gray-500 transition-colors hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-200"
312+
className="text-[10px] text-gray-400 hover:text-gray-200 dark:text-gray-400 dark:hover:text-gray-200"
313313
>
314314
Terms of Service
315315
</a>
316316
<a
317317
href="/privacy"
318-
className="text-[10px] text-gray-500 transition-colors hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-200"
318+
className="text-[10px] text-gray-400 hover:text-gray-200 dark:text-gray-400 dark:hover:text-gray-200"
319319
>
320320
Privacy Policy
321321
</a>

0 commit comments

Comments
 (0)