From 207541136f3d318a1cb3ce632b478ea45f6a0d97 Mon Sep 17 00:00:00 2001 From: Mohammed Al-yaseen Date: Sun, 23 Nov 2025 17:34:32 +0300 Subject: [PATCH] fix split-bill page height --- src/pages/split-bill/page.tsx | 258 ++++++++++++++++++---------------- 1 file changed, 137 insertions(+), 121 deletions(-) diff --git a/src/pages/split-bill/page.tsx b/src/pages/split-bill/page.tsx index 7e7448c..88e1960 100644 --- a/src/pages/split-bill/page.tsx +++ b/src/pages/split-bill/page.tsx @@ -1,4 +1,4 @@ -import { Button } from "antd"; +import { Button, Layout } from "antd"; import PeopleIcon from "components/Icons/PeopleIcon"; import PaymentMethods from "components/PaymentMethods/PaymentMethods"; import ProHeader from "components/ProHeader/ProHeader"; @@ -19,130 +19,146 @@ export default function SplitBillPage() { return ( <> - {t("checkout.splitBill")} -
- + + {t("checkout.splitBill")} +
-
-
- - - {t("checkout.totalPeople")} - -
- - -
- -
-
- - - {t("checkout.payFor")} - -
- - -
-
-
- - -
-
- - - -
+ +
+
+
+ + + {t("checkout.totalPeople")} + +
+ + +
+ +
+
+ + + {t("checkout.payFor")} + +
+ + +
+
+
+ + + +
+ + + +
+ + ); }