split bill: fix gray color

This commit is contained in:
2025-10-13 00:21:40 +03:00
parent b7adf8b33f
commit eadadf35fe
2 changed files with 5 additions and 11 deletions

View File

@@ -35,7 +35,7 @@ export interface GiftDetailsType {
interface CartState {
items: CartItem[];
tmp: unknown;
tmp: any;
specialRequest: string;
location: LocationData | null;
roomDetails: RoomDetailsType | null;

View File

@@ -4,13 +4,13 @@ import ProText from "components/ProText";
import { selectCart, selectCartTotal } from "features/order/orderSlice";
import { useTranslation } from "react-i18next";
import { useAppSelector } from "redux/hooks";
import { ProGray1 } from "ThemeConstants";
import styles from "../SplitBillPage.module.css";
export default function PaymentSummary() {
const { t } = useTranslation();
const { tmp } = useAppSelector(selectCart);
const getTotal = useAppSelector(selectCartTotal);
const { isRTL } = useAppSelector((state) => state.locale);
const subtotal = getTotal;
const tax = subtotal * 0.1; // 10% tax
@@ -23,22 +23,16 @@ export default function PaymentSummary() {
<Card className={`${styles.orderSummary}`}>
<Space direction="vertical" style={{ width: "100%" }}>
<div className={styles.summaryRow}>
<ProText style={{ color: "rgba(67, 78, 92, 1)" }}>
<ProText style={{ color: ProGray1 }}>
{t("checkout.remainingAmount")}
</ProText>
<ArabicPrice
price={remainingAmount}
style={{ color: "rgba(67, 78, 92, 1)" }}
/>
<ArabicPrice price={remainingAmount} style={{ color: ProGray1 }} />
</div>
<Divider className={styles.summaryDivider} />
<div className={`${styles.summaryRow} ${styles.totalRow}`}>
<ProText strong>{t("checkout.totalAmount")}</ProText>
<ArabicPrice
price={total}
strong
/>
<ArabicPrice price={total} strong />
</div>
</Space>
</Card>