added tailwind

This commit is contained in:
efim
2023-04-21 17:34:57 +04:00
parent fd7ddd9588
commit a25d915bb5
6 changed files with 1222 additions and 105 deletions

12
tailwind.config.js Normal file
View File

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