[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

Select the types of activity you want to include in your feed.

fix dark mode

+4 -3
+1 -1
src/app.html
··· 1 1 <!doctype html> 2 - <html lang="en" class="h-full"> 2 + <html lang="en" class="h-full dark"> 3 3 <script> 4 4 !(function (t, e) { 5 5 var o, n, p, r;
+1 -1
src/lib/Components/ReviewCard.svelte
··· 7 7 $props(); 8 8 </script> 9 9 10 - <div class="relative w-full max-w-2xl rounded-xl p-6 backdrop-blur-sm"> 10 + <div class="relative w-full max-w-2xl p-6 backdrop-blur-sm"> 11 11 <div class="flex items-center gap-4"> 12 12 {#if showMovieDetails} 13 13 <a
+2 -1
tailwind.config.ts
··· 21 21 } 22 22 }, 23 23 24 - plugins: [typography, forms, aspectRatio] 24 + plugins: [typography, forms, aspectRatio], 25 + darkMode: 'class' 25 26 } satisfies Config;