We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96bd57c + d83933e commit b2892f5Copy full SHA for b2892f5
src/components/Cart/CartContents.component.tsx
@@ -88,7 +88,7 @@ const CartContents = () => {
88
<div className="container mx-auto px-4 py-8">
89
{data?.cart?.contents?.nodes?.length ? (
90
<>
91
- <div className="bg-white rounded-lg shadow-md p-6 mb-8 md:w-full">
+ <div className="bg-white rounded-lg p-6 mb-8 md:w-full">
92
{data.cart.contents.nodes.map((item: IProductRootObject) => (
93
<div
94
key={item.key}
@@ -148,7 +148,7 @@ const CartContents = () => {
148
</div>
149
))}
150
151
- <div className="bg-white rounded-lg shadow-md p-6 md:w-full">
+ <div className="bg-white rounded-lg p-6 md:w-full">
152
<div className="flex justify-end mb-4">
153
<span className="font-semibold pr-2">Subtotal:</span>
154
<span>{cartTotal}</span>
0 commit comments