Small edits, fixing bug with app spawning, working on forum page

This commit is contained in:
metacryst
2025-11-20 00:44:42 -06:00
parent 2bc5c00830
commit 30faf12b20
9 changed files with 42 additions and 81 deletions

View File

@@ -18,9 +18,6 @@ class AppWindow extends Shadow {
case "Forum":
Forum()
break;
case "Tasks":
Tasks()
break;
case "Messages":
Messages()
break;
@@ -32,15 +29,15 @@ class AppWindow extends Shadow {
break;
}
})
.display(this.app ? '' : 'none')
.position("fixed")
.display(this.app ? 'block' : 'none')
.width(100, "vw")
.height(100, "vh")
.background("var(--main)")
.top(0)
.left(0)
.background("#591d10")
.x(0)
.y(0)
// .backgroundImage("/_/images/fabric.png")
// .backgroundSize("33vw auto")
// .position("fixed")
}
open(app) {