Skip to content

Commit db5533b

Browse files
committed
chore: increase width of cart controller in mobile view
1 parent 8566a7f commit db5533b

File tree

1 file changed

+4
-4
lines changed
  • src/app/[locale]/(main)/(container)/products/[...params]/components

1 file changed

+4
-4
lines changed

src/app/[locale]/(main)/(container)/products/[...params]/components/BuyBox.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ import ListItemText from '@mui/material/ListItemText';
3131
import { useTranslations } from 'next-intl';
3232
import { useParams } from 'next/navigation';
3333
import { FC, useMemo } from 'react';
34-
import DiscountPercentage from '../../../../../../../components/common/DiscountPercentage';
35-
import OldPrice from '../../../../../../../components/common/OldPrice';
36-
import PriceLabel from '../../../../../../../components/common/PriceLabel';
34+
import DiscountPercentage from '@/components/common/DiscountPercentage';
35+
import OldPrice from '@/components/common/OldPrice';
36+
import PriceLabel from '@/components/common/PriceLabel';
3737
import AddToCartDialog from './AddToCartDialog';
3838
import MobileBuyBox from './MobileBuyBox';
3939

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

261261
{isMobile && (
262262
<MobileBuyBox>
263-
<Box width="55%">{controllerSection}</Box>
263+
<Box width="60%">{controllerSection}</Box>
264264
{priceSection}
265265
</MobileBuyBox>
266266
)}

0 commit comments

Comments
 (0)