homelab-dashboard/app/globals.css
Bilal Teke 787aab5e1d v2
2026-04-15 21:19:28 +02:00

21 lines
348 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
* {
@apply border-slate-200;
}
html {
color-scheme: light dark;
}
body {
@apply bg-slate-50 dark:bg-slate-900 text-slate-900 dark:text-slate-50;
}
@layer components {
.card {
@apply bg-white dark:bg-slate-800 rounded-lg border border-slate-200 dark:border-slate-700;
}
}