We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f71cd0c commit e884cc8Copy full SHA for e884cc8
src/components/Cart/CartContents.component.tsx
@@ -110,7 +110,7 @@ const CartContents = () => {
110
{item.product.node.name}
111
</h2>
112
<p className="text-gray-600">
113
- Enhetspris: kr {getUnitPrice(item.subtotal, item.quantity)}
+ kr {getUnitPrice(item.subtotal, item.quantity)}
114
</p>
115
</div>
116
<div className="flex items-center">
@@ -148,7 +148,7 @@ const CartContents = () => {
148
149
))}
150
151
- <div className="bg-white rounded-lg shadow-md p-6">
+ <div className="bg-white rounded-lg shadow-md p-6 w-[500px] md:w-full">
152
<div className="flex justify-end mb-4">
153
<span className="font-semibold pr-6">Subtotal:</span>
154
<span>{cartTotal}</span>
0 commit comments