Skip to content

Commit

Permalink
🐛 fix(profile): profile card layout
Browse files Browse the repository at this point in the history
  • Loading branch information
lwinmoepaing committed Oct 19, 2023
1 parent 0f18e38 commit df649c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Profile/ProfileCardList/ProfileCardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ const ProfileCardList = ({ profiles }: TPropsProfileCardList) => {
const bgColor = generateColor();

return (
<div key={profile._id}>
<div key={profile._id} className="self-stretch">
<Link href={`/profile/${profile.slugAsParams}`}>
<SquareBox
className={cn(
"transition ease-out cursor-pointer hover:opacity-80 hover:-translate-y-1 bg-opacity-30 min-h-[130px]",
"w-full h-full transition ease-out cursor-pointer hover:opacity-80 hover:-translate-y-1 bg-opacity-30 min-h-[130px]",
bgColor
)}
>
Expand Down

0 comments on commit df649c3

Please sign in to comment.