This commit is contained in:
Andras Bacsai
2025-03-10 15:11:25 +01:00
parent 6727b18539
commit 106937cc0f
17 changed files with 13628 additions and 0 deletions

12
remix/app/tailwind.css Normal file
View File

@@ -0,0 +1,12 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
@apply bg-white dark:bg-gray-950;
@media (prefers-color-scheme: dark) {
color-scheme: dark;
}
}