Skip to content

Commit

Permalink
refactor styles
Browse files Browse the repository at this point in the history
  • Loading branch information
yashtotla committed Oct 3, 2024
1 parent a983ccf commit 14ab785
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ProductCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,17 @@ const ProductCard = ({
return (
<Flex
className={cn(
"text-text bg-searchBackground flex-col justify-between",
"flex-col justify-between bg-background-highlight",
"shadow-product-card",
"rounded-base border border-gray-100 no-underline",
"rounded-base border no-underline",
"hover:scale-[1.02] hover:transition-transform"
)}
>
<Center
className="min-h-[200px] shadow-product-card-img-container"
style={{ backgroundColor: bgProp }}
>
<TwImage src={image} alt={alt} className="w-[100px] self-center" />
<TwImage src={image} alt={alt} height="100" className="self-center" />
</Center>
<Flex className="h-full flex-col p-6 text-left">
{githubRepoStars > 0 && (
Expand Down

0 comments on commit 14ab785

Please sign in to comment.