Quellcode durchsuchen

feat: fixes

response-fixes
Lazar Kostic vor 3 Jahren
Ursprung
Commit
7e2443ed11

+ 5
- 3
components/product-card/ProductCard.jsx Datei anzeigen

@@ -30,9 +30,9 @@ const ProductCard = ({ product }) => {
passHref
>
<Image
src="/images/product-card-image.jpg"
src={product.image}
alt="product image"
width={630}
width={500}
height={390}
/>
</NextLink>
@@ -54,7 +54,9 @@ const ProductCard = ({ product }) => {
{product.name}
</Typography>
<Typography
sx={{ height: { xs: '200px', sm: '250px', md: '200px' } }}
sx={{
height: { xs: '200px', sm: '250px', md: '250px', lg: '200px' },
}}
align="center"
fontSize="18px"
m={2}

+ 1
- 1
components/review-content/ReviewContent.jsx Datei anzeigen

@@ -129,7 +129,7 @@ const ReviewContent = () => {
}}
>
<Typography sx={{ fontSize: 18, fontWeight: 600 }}>
Total: ${orderData?.totalPrice.toFixed(2)}
Total: ${orderData?.totalPrice}
</Typography>
</Box>
<Box

Laden…
Abbrechen
Speichern