my-portfolio/src/app.css
christian c7a8bf8d0f
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m1s
fixed darkmode switch position
2024-05-19 17:28:46 +02:00

11 lines
231 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
transition:
background-color 0.2s ease-in-out,
color 0.2s ease-in-out;
@apply bg-stone-100 dark:bg-gray-900 text-slate-600 dark:text-stone-100 text-center;
}