remove tailwind darkmode classes

This commit is contained in:
Gregor Vostrak
2024-03-13 16:46:58 +01:00
parent d952b46984
commit 8ff396f1c0
30 changed files with 61 additions and 61 deletions

View File

@@ -127,13 +127,13 @@ const disableTwoFactorAuthentication = () => {
<template #content>
<h3
v-if="twoFactorEnabled && !confirming"
class="text-lg font-medium text-gray-900 dark:text-gray-100">
class="text-lg font-medium text-gray-100">
You have enabled two factor authentication.
</h3>
<h3
v-else-if="twoFactorEnabled && confirming"
class="text-lg font-medium text-gray-900 dark:text-gray-100">
class="text-lg font-medium text-gray-100">
Finish enabling two factor authentication.
</h3>
@@ -210,7 +210,7 @@ const disableTwoFactorAuthentication = () => {
</div>
<div
class="grid gap-1 max-w-xl mt-4 px-4 py-4 font-mono text-sm bg-gray-100 dark:bg-gray-900 dark:text-gray-100 rounded-lg">
class="grid gap-1 max-w-xl mt-4 px-4 py-4 font-mono text-sm bg-gray-100 text-gray-100 rounded-lg">
<div v-for="code in recoveryCodes" :key="code">
{{ code }}
</div>