diff --git a/src/admin/pages/OfferDetail.tsx b/src/admin/pages/OfferDetail.tsx
index e5b96ca..cefd857 100644
--- a/src/admin/pages/OfferDetail.tsx
+++ b/src/admin/pages/OfferDetail.tsx
@@ -128,11 +128,13 @@ function SortableItemRow({ item, index, currency, readOnly, canDelete, onUpdate,
)}
{index + 1} |
-
- onUpdate('description', e.target.value)}
- className="admin-form-input" placeholder="Název položky" readOnly={readOnly} style={{ marginBottom: '0.25rem', fontWeight: 500 }} />
- onUpdate('item_description', e.target.value)}
- className="admin-form-input" placeholder="Podrobný popis (volitelný)" readOnly={readOnly} style={{ fontSize: '0.8rem', opacity: 0.8 }} />
+ |
+
+ onUpdate('description', e.target.value)}
+ className="admin-form-input" placeholder="Název položky" readOnly={readOnly} style={{ fontWeight: 500 }} />
+ onUpdate('item_description', e.target.value)}
+ className="admin-form-input" placeholder="Podrobný popis (volitelný)" readOnly={readOnly} style={{ fontSize: '0.8rem', opacity: 0.8 }} />
+
|
onUpdate('quantity', parseFloat(e.target.value) || 0)}
|