diff --git a/client/src/modules/crm/CrmContactEntryForm.tsx b/client/src/modules/crm/CrmContactEntryForm.tsx index b9c27fe..aa72776 100644 --- a/client/src/modules/crm/CrmContactEntryForm.tsx +++ b/client/src/modules/crm/CrmContactEntryForm.tsx @@ -19,7 +19,7 @@ export function CrmContactEntryForm({ form, isSaving, status, onChange, onSubmit onChange("summary", event.target.value)} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" placeholder="Short headline for the interaction" /> @@ -53,7 +53,7 @@ export function CrmContactEntryForm({ form, isSaving, status, onChange, onSubmit value={form.body} onChange={(event) => onChange("body", event.target.value)} rows={5} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" placeholder="Capture what happened, follow-ups, and commitments." /> diff --git a/client/src/modules/crm/CrmContactsPanel.tsx b/client/src/modules/crm/CrmContactsPanel.tsx index 4131918..952a87a 100644 --- a/client/src/modules/crm/CrmContactsPanel.tsx +++ b/client/src/modules/crm/CrmContactsPanel.tsx @@ -93,7 +93,7 @@ export function CrmContactsPanel({ entity, ownerId, contacts, onContactsChange } updateField("fullName", event.target.value)} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" /> diff --git a/client/src/modules/crm/CrmRecordForm.tsx b/client/src/modules/crm/CrmRecordForm.tsx index a6a0b4e..734af72 100644 --- a/client/src/modules/crm/CrmRecordForm.tsx +++ b/client/src/modules/crm/CrmRecordForm.tsx @@ -34,7 +34,7 @@ export function CrmRecordForm({ entity, form, hierarchyOptions = [], onChange }: onChange("lifecycleStage", event.target.value as CrmRecordInput["lifecycleStage"])} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" > {crmLifecycleOptions.map((option) => ( {hierarchyOptions.map((option) => ( @@ -108,7 +108,7 @@ export function CrmRecordForm({ entity, form, hierarchyOptions = [], onChange }: onChange("paymentTerms", event.target.value || null)} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" placeholder="Net 30" /> @@ -117,7 +117,7 @@ export function CrmRecordForm({ entity, form, hierarchyOptions = [], onChange }: onChange("currencyCode", event.target.value.toUpperCase() || null)} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" maxLength={8} /> @@ -180,7 +180,7 @@ export function CrmRecordForm({ entity, form, hierarchyOptions = [], onChange }: type={field.type ?? "text"} value={form[field.key]} onChange={(event) => onChange(field.key, event.target.value)} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" /> ))} @@ -191,7 +191,7 @@ export function CrmRecordForm({ entity, form, hierarchyOptions = [], onChange }: value={form.notes} onChange={(event) => onChange("notes", event.target.value)} rows={5} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" /> diff --git a/client/src/modules/inventory/InventoryFormPage.tsx b/client/src/modules/inventory/InventoryFormPage.tsx index 76e1401..80e914a 100644 --- a/client/src/modules/inventory/InventoryFormPage.tsx +++ b/client/src/modules/inventory/InventoryFormPage.tsx @@ -177,7 +177,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) { updateField("sku", event.target.value)} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" /> @@ -206,7 +206,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) { updateField("status", event.target.value as InventoryItemInput["status"])} - className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand" + className="w-full rounded-2xl border border-line/70 bg-page px-2 py-2 text-text outline-none transition focus:border-brand" > {inventoryStatusOptions.map((option) => (