checkout: UI + styles enhacnements

This commit is contained in:
2025-12-30 23:50:42 +03:00
parent 3ed5c4d5d6
commit 5d523e2508
24 changed files with 355 additions and 122 deletions

View File

@@ -16,12 +16,9 @@ export default function CustomerInformationCard() {
return (
orderType !== OrderType.Gift && (
<>
<ProInputCard
title={t("checkout.customerInformation")}
className={styles.customerInformationCard}
>
<div style={{ position: "relative", top: -25 }}>
<Form.Item label={t("checkout.customerName")} name="customerName">
<ProInputCard title={t("checkout.customerInformation")}>
<div className={styles.customerInformationCard}>
<Form.Item name="customerName">
<Input
placeholder={t("checkout.customerName")}
size="large"
@@ -33,9 +30,7 @@ export default function CustomerInformationCard() {
}}
/>
</Form.Item>
</div>
<div style={{ position: "relative", top: -35 }}>
<ProPhoneInput label={t("login.phone")} propName="phone" />
<ProPhoneInput propName="phone" />
</div>
</ProInputCard>
</>