This commit is contained in:
metacryst
2026-03-14 16:53:38 -05:00
parent e85ffc66f8
commit 07f431e2a3
6 changed files with 16 additions and 17 deletions

View File

@@ -19,7 +19,7 @@ class Login extends Shadow {
render() {
ZStack(() => {
img(window.matchMedia('(prefers-color-scheme: dark)') ? "/_/icons/logowhite.svg" : "/_/icons/logo.svg", window.isMobile() ? "5vmax" : "3vmax")
img(window.matchMedia('(prefers-color-scheme: dark)') ? "/_/icons/columnwhite.svg" : "/_/icons/logo.svg", window.isMobile() ? "5vmax" : "3vmax")
.position("absolute")
.top(5, em)
.left(2, em)

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@@ -32,14 +32,6 @@ class Forum extends Shadow {
render() {
ZStack(() => {
VStack(() => {
h1("Forum")
.color("var(--quillred)")
.textAlign("center")
.marginBottom(0)
h3(global.currentNetwork.name)
.color("var(--quillred)")
.textAlign("center")
.margin(0)
ForumPanel()
@@ -48,9 +40,9 @@ class Forum extends Shadow {
.boxSizing("border-box")
.paddingHorizontal(2, em)
.color("var(--accent)")
.background("#fff1dd")
.marginBottom(5.5, em)
.border("1px solid black")
.background("black")
.marginBottom(1, em)
.border("0.5px solid #6f5e4e")
.borderRadius(100, px)
.fontFamily("Arial")
.fontSize(1, em)

View File

@@ -27,7 +27,7 @@ class People extends Shadow {
render() {
VStack(() => {
h1("People")
.color("var(--quillred)")
.color("rgb(158 136 105)")
.textAlign("center")
.marginBottom(0.25, em)
h3(global.currentNetwork.name)
@@ -48,8 +48,8 @@ class People extends Shadow {
.width(3.5, em)
.padding(0.5, em)
.border("1px solid var(--accent)")
.borderRadius(3, px)
.background("var(--bone)")
.borderRadius(100, pct)
.background("black")
VStack(() => {
h3(this.people[i].first_name + " " + this.people[i].last_name)
@@ -65,8 +65,6 @@ class People extends Shadow {
.height(3.5, em)
.padding(0.75, em)
.gap(1, em)
.borderBottom("1px solid var(--divider)")
.borderTop(i == 0 ? "1px solid var(--divider)" : "")
}
} else {
h2("No Members")