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

@@ -29,12 +29,12 @@ const close = () => {
:max-width="maxWidth"
:closeable="closeable"
@close="close">
<div class="bg-white dark:bg-gray-800 px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
<div class="bg-card-background px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
<div class="sm:flex sm:items-start">
<div
class="mx-auto shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-red-100 sm:mx-0 sm:h-10 sm:w-10">
<svg
class="h-6 w-6 text-red-600 dark:text-red-400"
class="h-6 w-6 text-red-400"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
@@ -60,7 +60,7 @@ const close = () => {
</div>
<div
class="flex flex-row justify-end px-6 py-4 bg-gray-100 dark:bg-gray-800 text-end">
class="flex flex-row justify-end px-6 py-4 bg-card-background text-end">
<slot name="footer" />
</div>
</Modal>