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

@@ -1,12 +1,12 @@
<template>
<div
class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900">
class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-card-background">
<div>
<slot name="logo" />
</div>
<div
class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg">
class="w-full sm:max-w-md mt-6 px-6 py-4 bg-card-background shadow-md overflow-hidden sm:rounded-lg">
<slot />
</div>
</div>