split bill: fix gray color
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user