mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-17 12:42:15 +01:00
fix light mode text color in some 2fa and auth views
This commit is contained in:
@@ -87,7 +87,7 @@ const submit = () => {
|
|||||||
<div class="flex items-center justify-end mt-4">
|
<div class="flex items-center justify-end mt-4">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="text-sm text-muted hover:text-gray-900 underline cursor-pointer"
|
class="text-sm text-muted hover:text-text-primary underline cursor-pointer"
|
||||||
@click.prevent="toggleRecovery">
|
@click.prevent="toggleRecovery">
|
||||||
<template v-if="!recovery"> Use a recovery code</template>
|
<template v-if="!recovery"> Use a recovery code</template>
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ const verificationLinkSent = computed(
|
|||||||
:href="route('logout')"
|
:href="route('logout')"
|
||||||
method="post"
|
method="post"
|
||||||
as="button"
|
as="button"
|
||||||
class="underline text-sm text-muted hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800 ms-2">
|
class="underline text-sm text-muted hover:text-text-secondary rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800 ms-2">
|
||||||
Log Out
|
Log Out
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ defineProps({
|
|||||||
<template>
|
<template>
|
||||||
<Head title="Privacy Policy" />
|
<Head title="Privacy Policy" />
|
||||||
|
|
||||||
<div class="font-sans text-gray-100 antialiased">
|
<div class="font-sans text-text-secondary antialiased">
|
||||||
<div class="pt-4 bg-gray-900">
|
<div class="pt-4 bg-gray-900">
|
||||||
<div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0">
|
<div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -127,13 +127,13 @@ const disableTwoFactorAuthentication = () => {
|
|||||||
<template #content>
|
<template #content>
|
||||||
<h3
|
<h3
|
||||||
v-if="twoFactorEnabled && !confirming"
|
v-if="twoFactorEnabled && !confirming"
|
||||||
class="text-lg font-medium text-gray-100">
|
class="text-lg font-medium text-text-secondary">
|
||||||
You have enabled two factor authentication.
|
You have enabled two factor authentication.
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<h3
|
<h3
|
||||||
v-else-if="twoFactorEnabled && confirming"
|
v-else-if="twoFactorEnabled && confirming"
|
||||||
class="text-lg font-medium text-gray-100">
|
class="text-lg font-medium text-text-secondary">
|
||||||
Finish enabling two factor authentication.
|
Finish enabling two factor authentication.
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
@@ -210,7 +210,7 @@ const disableTwoFactorAuthentication = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="grid gap-1 max-w-xl mt-4 px-4 py-4 font-mono text-sm bg-input-background text-gray-100 rounded-lg">
|
class="grid gap-1 max-w-xl mt-4 px-4 py-4 font-mono text-sm bg-input-background text-text-secondary rounded-lg">
|
||||||
<div v-for="code in recoveryCodes" :key="code">
|
<div v-for="code in recoveryCodes" :key="code">
|
||||||
{{ code }}
|
{{ code }}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ const page = usePage<{
|
|||||||
:href="route('verification.send')"
|
:href="route('verification.send')"
|
||||||
method="post"
|
method="post"
|
||||||
as="button"
|
as="button"
|
||||||
class="underline text-sm text-muted hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"
|
class="underline text-sm text-muted hover:text-text-secondary rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"
|
||||||
@click.prevent="sendEmailVerification">
|
@click.prevent="sendEmailVerification">
|
||||||
Click here to re-send the verification email.
|
Click here to re-send the verification email.
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ defineProps({
|
|||||||
<template>
|
<template>
|
||||||
<Head title="Terms of Service" />
|
<Head title="Terms of Service" />
|
||||||
|
|
||||||
<div class="font-sans text-gray-100 antialiased">
|
<div class="font-sans text-text-secondary antialiased">
|
||||||
<div class="pt-4 bg-gray-900">
|
<div class="pt-4 bg-gray-900">
|
||||||
<div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0">
|
<div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Reference in New Issue
Block a user