Compare commits

...

2 Commits

Author SHA1 Message Date
45d8e18e30 Merge branch 'flowbite-svelte'
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m53s
2024-05-19 17:33:25 +02:00
c7a8bf8d0f fixed darkmode switch position
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m1s
2024-05-19 17:28:46 +02:00
2 changed files with 1 additions and 2 deletions

View File

@ -6,5 +6,5 @@ body {
transition:
background-color 0.2s ease-in-out,
color 0.2s ease-in-out;
@apply bg-stone-100 dark:bg-gray-950 text-black dark:text-stone-100 text-center;
@apply bg-stone-100 dark:bg-gray-900 text-slate-600 dark:text-stone-100 text-center;
}

View File

@ -1,7 +1,6 @@
<script>
import { blur } from 'svelte/transition';
import '../app.css';
import '../app.css';
import CloudflareAnalytics from '../lib/CloudflareAnalytics.svelte';
import { DarkMode } from 'flowbite-svelte';