showing info in dashboard

This commit is contained in:
metacryst
2026-01-12 17:24:45 -06:00
parent 63304bd281
commit 942e479185
6 changed files with 125 additions and 7 deletions

View File

@@ -45,7 +45,7 @@ class AppMenu extends Shadow {
.onEvent("themechange", () => {
this.rerender()
})
.onEvent("appchanged", () => {
.onEvent("appchange", () => {
console.log("event firing successfully")
this.rerender()
})

View File

@@ -39,13 +39,16 @@ class AppWindow extends Shadow {
break;
}
})
.overflow("scroll")
.position("fixed")
.width(window.innerWidth - this.calculateWidth(), px)
.height(window.innerHeight - this.calculateHeight(), px)
.background("var(--app)")
.x(this.calculateWidth(), px)
.yBottom(this.calculateHeight(), px)
.onEvent("appchange", () => this.rerender())
.onEvent("appchange", () => {
this.rerender()
})
}
}