Skip to content

Commit

Permalink
chore: increase width of cart controller in mobile view
Browse files Browse the repository at this point in the history
  • Loading branch information
pooriaset committed May 25, 2024
1 parent 8566a7f commit db5533b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ import ListItemText from '@mui/material/ListItemText';
import { useTranslations } from 'next-intl';
import { useParams } from 'next/navigation';
import { FC, useMemo } from 'react';
import DiscountPercentage from '../../../../../../../components/common/DiscountPercentage';
import OldPrice from '../../../../../../../components/common/OldPrice';
import PriceLabel from '../../../../../../../components/common/PriceLabel';
import DiscountPercentage from '@/components/common/DiscountPercentage';
import OldPrice from '@/components/common/OldPrice';
import PriceLabel from '@/components/common/PriceLabel';
import AddToCartDialog from './AddToCartDialog';
import MobileBuyBox from './MobileBuyBox';

Expand Down Expand Up @@ -260,7 +260,7 @@ const BuyBox: FC<BuyBoxProps> = ({ product }) => {

{isMobile && (
<MobileBuyBox>
<Box width="55%">{controllerSection}</Box>
<Box width="60%">{controllerSection}</Box>
{priceSection}
</MobileBuyBox>
)}
Expand Down

0 comments on commit db5533b

Please sign in to comment.