Initial commit

This commit is contained in:
Timothy DeHerrera
2022-11-01 15:18:00 -06:00
committed by GitHub
commit 14079f0511
90 changed files with 7473 additions and 0 deletions

14
src/styles/global.css Normal file
View File

@@ -0,0 +1,14 @@
@tailwind base;
/* https://github.com/tailwindlabs/tailwindcss/discussions/2917 */
@layer base {
body {
&.dark {
@apply text-gray-200;
header, footer {
@apply text-gray-400 border-gray-700;
}
}
}
}
@tailwind components;
@tailwind utilities;