diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-09-09 14:37:47 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-09-09 14:37:47 +0700 |
| commit | 383adf9edeed30db9f5df8e9ed4752cd513f49a5 (patch) | |
| tree | 3334834347e06a36acd1ead19a105634987a3bf4 | |
| parent | 4d9200650d232e4302f7e01df96751c3f9412693 (diff) | |
<iman> update new register mobile
| -rw-r--r-- | src-migrate/modules/register/components/FormBisnis.tsx | 6 | ||||
| -rw-r--r-- | src/styles/globals.css | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src-migrate/modules/register/components/FormBisnis.tsx b/src-migrate/modules/register/components/FormBisnis.tsx index ea0e4761..fb9f6484 100644 --- a/src-migrate/modules/register/components/FormBisnis.tsx +++ b/src-migrate/modules/register/components/FormBisnis.tsx @@ -267,11 +267,11 @@ const form: React.FC<FormProps> = ({ type, required, isPKP }) => { {!required && isPKP && !!errors.email_partner && <span className="form-msg-danger">{errors.email_partner}</span>} </div> - <div> + <div className=""> <label className="font-bold" htmlFor="company"> Nama Bisnis </label> - <div className="flex justify-between items-start gap-2 h-12"> + <div className="flex justify-between items-start gap-2 max-h-12 min-h-12 text-sm"> <div className='w-4/5 pr-1'> <Controller name='companyType' @@ -285,7 +285,7 @@ const form: React.FC<FormProps> = ({ type, required, isPKP }) => { type="text" name="business_name" id="business_name" - className="form-input h-full " + className="form-input h-12 " placeholder="Nama Perusahaan" autoCapitalize="true" value={form.business_name} diff --git a/src/styles/globals.css b/src/styles/globals.css index ebd5e9a5..f712217a 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -117,7 +117,7 @@ button { } .form-msg-danger { - @apply text-danger-600 mt-2 block; + @apply text-danger-600 mt-2 block text-sm; } .btn-yellow, |
