Skip to content

Commit

Permalink
Remove hover anim
Browse files Browse the repository at this point in the history
  • Loading branch information
w3bdesign committed Sep 13, 2024
1 parent 9fbfbbe commit 0e2a376
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Product/SingleProduct.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
id="product-image"
src={image.sourceUrl}
alt={name}
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"
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"
/>
)}
{!image && (
Expand All @@ -75,7 +75,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
placeholderFallBack
}
alt={name}
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"
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"
/>
)}
<div className="ml-8">
Expand Down

0 comments on commit 0e2a376

Please sign in to comment.