add tailwind css

This commit is contained in:
2024-04-18 15:14:35 +02:00
parent 7ba2e15940
commit 337b64759f
6 changed files with 570 additions and 1 deletions

8
tailwind.config.js Normal file
View File

@@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
};