restyling authentication in dark mode
This commit is contained in:
@@ -26,7 +26,7 @@ const verificationLinkSent = computed(() => props.status === 'verification-link-
|
||||
<JetAuthenticationCardLogo />
|
||||
</template>
|
||||
|
||||
<div class="mb-4 text-sm text-gray-600">
|
||||
<div class="mb-4 text-sm text-gray-600 dark:text-gray-300">
|
||||
Before continuing, could you verify your email address by clicking on the link we just emailed to you? If you didn't receive the email, we will gladly send you another.
|
||||
</div>
|
||||
|
||||
@@ -43,7 +43,7 @@ const verificationLinkSent = computed(() => props.status === 'verification-link-
|
||||
<div>
|
||||
<Link
|
||||
:href="route('profile.show')"
|
||||
class="underline text-sm text-gray-600 hover:text-gray-900"
|
||||
class="underline text-sm text-gray-600 dark:text-gray-300 hover:text-gray-900"
|
||||
>
|
||||
Edit Profile</Link>
|
||||
|
||||
@@ -51,7 +51,7 @@ const verificationLinkSent = computed(() => props.status === 'verification-link-
|
||||
:href="route('logout')"
|
||||
method="post"
|
||||
as="button"
|
||||
class="underline text-sm text-gray-600 hover:text-gray-900 ml-2"
|
||||
class="underline text-sm text-gray-600 dark:text-gray-300 hover:text-gray-900 ml-2"
|
||||
>
|
||||
Log Out
|
||||
</Link>
|
||||
|
||||
Reference in New Issue
Block a user