Initial commit

This commit is contained in:
Joururi
2023-05-08 18:17:54 +02:00
committed by GitHub
commit a5465d6483
30 changed files with 7973 additions and 0 deletions

11
tailwind.config.js Normal file
View File

@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
container: {
padding: '2rem',
center: true
}
},
plugins: []
}