diff --git a/internal/webapp/authlocal.go b/internal/webapp/authlocal.go index d9590d5..b78cfd2 100644 --- a/internal/webapp/authlocal.go +++ b/internal/webapp/authlocal.go @@ -598,7 +598,7 @@ func (a *BuiltinAuth) pageLogin(w http.ResponseWriter, r *http.Request) { if a.AllowSignup { note := "" if len(a.AllowedDomains) > 0 { - note = ` (` + html.EscapeString(a.domainList()) + ` only)` + note = ` (` + html.EscapeString(a.domainList()) + ` only)` } signup = fmt.Sprintf(`
No account? Sign up%s
`, url.QueryEscape(next), note) } diff --git a/internal/webapp/static/style.css b/internal/webapp/static/style.css index 799104d..788e0b4 100644 --- a/internal/webapp/static/style.css +++ b/internal/webapp/static/style.css @@ -346,6 +346,7 @@ body { /* The list rows are the primary tap targets — size them to 44px too. */ #tree li > .row, #projects .row { min-height: 44px; } #invite-btn { min-height: 44px; padding: 0 16px; } + #org-name { min-height: 44px; display: inline-flex; align-items: center; } .nav-add { min-width: 44px; min-height: 44px; } .dir-history { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; } .markdown, .admin, .onboard, .history { max-width: 100%; }