Skip to content

Commit b2892f5

Browse files
authored
Merge pull request #1388 from w3bdesign/develop
Remove shadow
2 parents 96bd57c + d83933e commit b2892f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Cart/CartContents.component.tsx

+2-2
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 md:w-full">
91+
<div className="bg-white rounded-lg p-6 mb-8 md:w-full">
9292
{data.cart.contents.nodes.map((item: IProductRootObject) => (
9393
<div
9494
key={item.key}
@@ -148,7 +148,7 @@ const CartContents = () => {
148148
</div>
149149
))}
150150
</div>
151-
<div className="bg-white rounded-lg shadow-md p-6 md:w-full">
151+
<div className="bg-white rounded-lg p-6 md:w-full">
152152
<div className="flex justify-end mb-4">
153153
<span className="font-semibold pr-2">Subtotal:</span>
154154
<span>{cartTotal}</span>

0 commit comments

Comments
 (0)