Skip to content

Commit 0e2a376

Browse files
committed
Remove hover anim
1 parent 9fbfbbe commit 0e2a376

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Product/SingleProduct.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
6464
id="product-image"
6565
src={image.sourceUrl}
6666
alt={name}
67-
className="h-auto p-8 transition duration-500 ease-in-out transform xl:p-2 md:p-2 lg:p-2 hover:grow hover:scale-105"
67+
className="h-auto p-8 transition duration-500 ease-in-out transform xl:p-2 md:p-2 lg:p-2 md:hover:grow md:hover:scale-105"
6868
/>
6969
)}
7070
{!image && (
@@ -75,7 +75,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
7575
placeholderFallBack
7676
}
7777
alt={name}
78-
className="h-auto p-8 transition duration-500 ease-in-out transform xl:p-2 md:p-2 lg:p-2 hover:grow hover:shadow-lg hover:scale-105"
78+
className="h-auto p-8 transition duration-500 ease-in-out transform xl:p-2 md:p-2 lg:p-2 md:hover:grow md:hover:shadow-lg md:hover:scale-105"
7979
/>
8080
)}
8181
<div className="ml-8">

0 commit comments

Comments
 (0)