Added tailwind

This commit is contained in:
Lorenzo Iovino 2023-12-28 11:33:21 +01:00
parent 07c62b521b
commit 08f8d90f3d
15 changed files with 320 additions and 341 deletions

11
tailwind.config.js Normal file
View file

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {},
},
plugins: [],
}