Skip to content

Commit

Permalink
fixed postcard hover issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chuma-beep committed Oct 15, 2024
1 parent 20df520 commit 375340e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/postlist/PostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const PostCard: React.FC<PostCardProps> = ({ post, comments, bookmarks, onToggle
<div
key={post.id}
ref={isLast ? lastPostElementRef : null}
className="w-full max-w-full min-w-full mx-auto mb-6 transition-transform duration-300 ease-in-out transform hover:scale-105 hover:ml-4 cursor-pointer"
className="w-full max-w-full min-w-full mx-auto mb-6 transition-transform duration-300 ease-in-out transform hover:scale-105 sm:hover:ml-4 cursor-pointer"
>
<Card className="w-full px-0">
<Link href={`/post/${post.id}`} passHref>
Expand Down

0 comments on commit 375340e

Please sign in to comment.