add dev popup, bug fixes

This commit is contained in:
SethBurkart123
2023-09-11 16:43:58 +10:00
parent 066472948a
commit 979f3a8a28
28 changed files with 344 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"background-primary-dark": "",
"background-primary-light": "",
"background-secondary-dark": "",
"background-secondary-light": "",
"forground-primary-dark": "",
"forground-primary-light": "",
"forground-secondary-dark": "",
"forground-secondary-light": ""
},
},
},
plugins: [],
}