density 2

This commit is contained in:
2026-03-14 22:08:29 -05:00
parent a6b24a6609
commit 2cf6bf858d
7 changed files with 29 additions and 29 deletions

View File

@@ -177,7 +177,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) {
<input
value={form.sku}
onChange={(event) => 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"
/>
</label>
<label className="block 2xl:col-span-2">
@@ -185,7 +185,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) {
<input
value={form.name}
onChange={(event) => updateField("name", 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"
/>
</label>
<label className="block">
@@ -196,7 +196,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) {
step={0.01}
value={form.defaultCost ?? ""}
onChange={(event) => updateField("defaultCost", event.target.value === "" ? null : Number(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"
/>
</label>
</div>
@@ -206,7 +206,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) {
<select
value={form.type}
onChange={(event) => updateField("type", event.target.value as InventoryItemInput["type"])}
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"
>
{inventoryTypeOptions.map((option) => (
<option key={option.value} value={option.value}>
@@ -220,7 +220,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) {
<select
value={form.status}
onChange={(event) => 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) => (
<option key={option.value} value={option.value}>
@@ -234,7 +234,7 @@ export function InventoryFormPage({ mode }: InventoryFormPageProps) {
<select
value={form.unitOfMeasure}
onChange={(event) => updateField("unitOfMeasure", event.target.value as InventoryItemInput["unitOfMeasure"])}
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"
>
{inventoryUnitOptions.map((option) => (
<option key={option.value} value={option.value}>