mobile public site

This commit is contained in:
metacryst
2026-01-14 09:39:28 -06:00
parent e81d9e6584
commit 34a73abdb4
4 changed files with 13 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ class SignUp extends Shadow {
render() {
ZStack(() => {
img("/_/icons/quill.svg", "3vmax")
img("/_/icons/quill.svg", window.isMobile() ? "5vmax" : "3vmax")
.position("absolute")
.top(2, em)
.left(2, em)
@@ -35,6 +35,7 @@ class SignUp extends Shadow {
.x(50, vw).y(50, vh).center()
.border("1px solid var(--red)")
.padding(1, em)
.width(isMobile() ? 70 : "auto", isMobile() ? vw : "")
})
}
}