adding app icon and splash screen

This commit is contained in:
metacryst
2026-02-15 05:32:58 -06:00
parent cee8ebecc5
commit 83a640433a
11 changed files with 14 additions and 7 deletions

View File

@@ -8,6 +8,13 @@ class Login extends Shadow {
.backgroundColor("var(--accentdark)")
.borderRadius(12, px)
.outline("none")
.onTouch((start) => {
if(start) {
this.style.backgroundColor = "var(--accent)"
} else {
this.style.backgroundColor = "var(--accentdark)"
}
})
}
render() {