diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2025-01-24 01:53:42 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2025-01-24 01:53:42 +0000 |
| commit | ed3faf85e6a6e8083128ec68894533738c762b04 (patch) | |
| tree | e8bb6ddc4b0d470c024667ab3ccacd3e2f85cf50 /pages/register.vue | |
| parent | 0248517c6845a6c755d40c89d3d769ce7d60bd03 (diff) | |
Add /live
Diffstat (limited to 'pages/register.vue')
| -rw-r--r-- | pages/register.vue | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/pages/register.vue b/pages/register.vue index 35e77dd..33a02a7 100644 --- a/pages/register.vue +++ b/pages/register.vue @@ -94,7 +94,7 @@ const handleSubmit = async (e: Event) => { </template> <style scoped> -.auth-container { +div.auth-container { min-height: 100vh; background-color: var(--color-background-muted); display: flex; @@ -103,7 +103,7 @@ const handleSubmit = async (e: Event) => { gap: 1rem; } -.auth-header { +div.auth-header { margin: 0 auto; width: 100%; max-width: 28rem; @@ -113,61 +113,66 @@ const handleSubmit = async (e: Event) => { flex-direction: column; } -.auth-title { +h2.auth-title { margin-top: 1.5rem; font-size: 1.875rem; font-weight: 800; color: #1f2937; } -.auth-body { +div.auth-body { margin-top: 2rem; margin: 0 auto; width: 100%; max-width: 28rem; } -.auth-form { +form.auth-form { display: grid; gap: 1.5rem; } -.auth-error { - color: var(--color-error-light); +div.auth-error { + color: var(--color-text-error); + font-style: oblique; } -.form-group { +div.form-group { display: flex; flex-direction: column; } -.form-label { +label.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; } -.form-input-container { +div.form-input-container { margin-top: 0.25rem; } -.form-footer { +div.form-footer { display: flex; justify-content: flex-end; margin: 0 auto; max-width: 28rem; } +div.form-submit { + display: flex; +} + +div.form-submit button { + width: 100%; +} + .register-link { font-size: var(--text-small); font-weight: 500; } -.form-submit { - display: flex; -} - .auth-error { color: var(--color-text-error); font-style: oblique; |
