added tailwind and cleaned up page

Cleaned up page to allow Tailwind to start handling the look and feel of
everything
This commit is contained in:
2024-07-24 09:17:39 -04:00
parent 64def1a763
commit 59fe3d32ff
5 changed files with 142 additions and 103 deletions

View File

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