Init tailwind

This commit is contained in:
Giulio De Pasquale 2022-12-06 16:51:13 +01:00
parent 71ad3b3174
commit e2cfc9d86c
4 changed files with 1347 additions and 0 deletions

1331
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"devDependencies": {
"tailwindcss": "^3.2.4"
}
}

3
src/style.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

8
tailwind.config.js Normal file
View File

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