Initialize dev

This commit is contained in:
Joururi
2023-04-25 11:28:02 +02:00
committed by GitHub
commit 77207ff039
22 changed files with 4806 additions and 0 deletions

14
tailwind.config.js Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
fontFamily: {
sans: ["Open Sans", "system-ui", "Lato", "sans-serif"],
},
container: {
padding: "2rem",
center: true,
},
},
plugins: [],
};