making ready for production, fixing app menu spacing, some better icons

This commit is contained in:
metacryst
2026-03-15 08:13:44 -05:00
parent cb11d68fa7
commit fc2d9c2bc9
48 changed files with 53 additions and 36 deletions

View File

@@ -1,3 +1,5 @@
const env = import.meta.env
class Login extends Shadow {
inputStyles(el) {
return el
@@ -47,7 +49,7 @@ class Login extends Shadow {
.color("var(--text)")
.border("1px solid var(--accent)")
})
.attr({action: "/login", method: "POST"})
.attr({action: `${env.VITE_API_URL}/login`, method: "POST"})
.x(50, vw).y(50, vh)
.center()
})