ui groundwork

This commit is contained in:
DecDuck
2024-10-04 14:43:02 +10:00
parent 22ac7f6b15
commit e52f072091
29 changed files with 618 additions and 27 deletions

21
tailwind.config.js Normal file
View File

@ -0,0 +1,21 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
fontFamily: {
sans: ["Helvetica"],
display: ["Motiva Sans"]
}
},
},
plugins: [],
}