Skip to content

Commit e884cc8

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Cart/CartContents.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const CartContents = () => {
110110
{item.product.node.name}
111111
</h2>
112112
<p className="text-gray-600">
113-
Enhetspris: kr {getUnitPrice(item.subtotal, item.quantity)}
113+
kr {getUnitPrice(item.subtotal, item.quantity)}
114114
</p>
115115
</div>
116116
<div className="flex items-center">
@@ -148,7 +148,7 @@ const CartContents = () => {
148148
</div>
149149
))}
150150
</div>
151-
<div className="bg-white rounded-lg shadow-md p-6">
151+
<div className="bg-white rounded-lg shadow-md p-6 w-[500px] md:w-full">
152152
<div className="flex justify-end mb-4">
153153
<span className="font-semibold pr-6">Subtotal:</span>
154154
<span>{cartTotal}</span>

0 commit comments

Comments
 (0)