Skip to content

Commit 805e051

Browse files
committed
Update CartContents.component.tsx
1 parent e884cc8 commit 805e051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Cart/CartContents.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const CartContents = () => {
8888
<div className="container mx-auto px-4 py-8">
8989
{data?.cart?.contents?.nodes?.length ? (
9090
<>
91-
<div className="bg-white rounded-lg shadow-md p-6 mb-8">
91+
<div className="bg-white rounded-lg shadow-md p-6 mb-8 w-[500px] md:w-full">
9292
{data.cart.contents.nodes.map((item: IProductRootObject) => (
9393
<div
9494
key={item.key}

0 commit comments

Comments
 (0)