enhance brief menu card styles
This commit is contained in:
@@ -32,14 +32,13 @@ export default function BriefMenuCard() {
|
|||||||
<>
|
<>
|
||||||
<ProInputCard
|
<ProInputCard
|
||||||
title={t("checkout.orderSummary")}
|
title={t("checkout.orderSummary")}
|
||||||
dividerStyle={{ margin: "5px 0 0 0" }}
|
dividerStyle={{ margin: "3px 0 16px 0" }}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
display: "flex",
|
display: "flex",
|
||||||
flexDirection: "row",
|
flexDirection: "row",
|
||||||
justifyContent: "space-between",
|
justifyContent: "space-between",
|
||||||
padding: "16px 0",
|
|
||||||
}}
|
}}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (orderId && location.pathname.includes("/order/")) {
|
if (orderId && location.pathname.includes("/order/")) {
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export default function OrderDetails() {
|
|||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
justifyContent: "space-between",
|
justifyContent: "space-between",
|
||||||
height: "100%",
|
height: "100%",
|
||||||
padding: 8
|
padding: 8,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Space orientation="vertical" size="small">
|
<Space orientation="vertical" size="small">
|
||||||
@@ -123,10 +123,20 @@ export default function OrderDetails() {
|
|||||||
[isRTL ? "right" : "left"]: 8,
|
[isRTL ? "right" : "left"]: 8,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ArabicPrice
|
<Button
|
||||||
price={item.price}
|
shape="circle"
|
||||||
style={{ fontStyle: "bold" }}
|
iconPlacement="start"
|
||||||
/>
|
size="small"
|
||||||
|
className={styles.addButton}
|
||||||
|
style={{
|
||||||
|
background: "#F5F5F6",
|
||||||
|
width: 28,
|
||||||
|
height: 28,
|
||||||
|
border: "none",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ProText style={{color: "#1F1C2E"}}>{item.qty} </ProText>
|
||||||
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</Space>
|
</Space>
|
||||||
<div style={{ position: "relative" }}>
|
<div style={{ position: "relative" }}>
|
||||||
|
|||||||
Reference in New Issue
Block a user