fix hover color on register and login pages links

This commit is contained in:
Gregor Vostrak
2024-05-02 15:14:38 +02:00
parent 3b5e09267f
commit 6f12c1907e
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ const submit = () => {
<Link <Link
v-if="canResetPassword" v-if="canResetPassword"
:href="route('password.request')" :href="route('password.request')"
class="underline text-sm text-muted hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> class="underline text-sm text-muted hover:text-white rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Forgot your password? Forgot your password?
</Link> </Link>

View File

@@ -136,7 +136,7 @@ const page = usePage<{
<div class="flex items-center justify-end mt-4"> <div class="flex items-center justify-end mt-4">
<Link <Link
:href="route('login')" :href="route('login')"
class="underline text-sm text-muted hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> class="underline text-sm text-muted hover:text-white rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Already registered? Already registered?
</Link> </Link>