fix(ui): improve onboarding page styling to match sign-in page
All checks were successful
CI / build (push) Successful in 1m51s
CI / docker (push) Successful in 1m16s

Add 32px card padding and reduce max-width to 420px for consistency
with the sign-in page. Add noValidate to prevent browser-native
required validation outlines on inputs.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-25 12:43:11 +02:00
parent 0cfa359fc5
commit b5068250f9
2 changed files with 7 additions and 3 deletions

View File

@@ -8,10 +8,14 @@
.wrapper {
width: 100%;
max-width: 480px;
max-width: 420px;
padding: 16px;
}
.card {
padding: 32px;
}
.inner {
display: flex;
flex-direction: column;

View File

@@ -43,7 +43,7 @@ export function OnboardingPage() {
return (
<div className={styles.page}>
<div className={styles.wrapper}>
<Card>
<Card className={styles.card}>
<div className={styles.inner}>
<div className={styles.logo}>
<img src={cameleerLogo} alt="" className={styles.logoImg} />
@@ -59,7 +59,7 @@ export function OnboardingPage() {
</div>
)}
<form onSubmit={handleSubmit} className={styles.form}>
<form onSubmit={handleSubmit} className={styles.form} noValidate>
<FormField label="Organization name" htmlFor="onboard-name" required>
<Input
id="onboard-name"