Switch to TailwindCSS and remove global CSS file

This commit is contained in:
2025-01-12 15:16:21 -06:00
parent 211fcac0c3
commit ea965b6834
9 changed files with 1069 additions and 117 deletions
+9
View File
@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
}