Skip to content

Commit 447f180

Browse files
authoredMay 21, 2020
Merge pull request laravel-frontend-presets#104 from rennokki/bugfix/anchor-pointing-cursor
[bugfix] Anchor is not having pointer cursor on verification resend link
2 parents 95825c7 + dad3040 commit 447f180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/tailwindcss-stubs/resources/views/auth/verify.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</p>
2323

2424
<p class="leading-normal mt-6">
25-
{{ __('If you did not receive the email') }}, <a class="text-blue-500 hover:text-blue-700 no-underline" onclick="event.preventDefault(); document.getElementById('resend-verification-form').submit();">{{ __('click here to request another') }}</a>.
25+
{{ __('If you did not receive the email') }}, <a class="text-blue-500 hover:text-blue-700 no-underline cursor-pointer" onclick="event.preventDefault(); document.getElementById('resend-verification-form').submit();">{{ __('click here to request another') }}</a>.
2626
</p>
2727

2828
<form id="resend-verification-form" method="POST" action="{{ route('verification.resend') }}" class="hidden">

0 commit comments

Comments
 (0)
Please sign in to comment.