Skip to content

Commit

Permalink
fix overflow and remove hover for profile pill
Browse files Browse the repository at this point in the history
  • Loading branch information
Southclaws committed Dec 30, 2023
1 parent 6255e8c commit 32984b7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions web/src/components/site/ProfilePill/ProfilePill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@ export function ProfilePill({
p: "1",
pr: showHandle ? "2" : "1",
borderRadius: "full",
_hover: { backgroundColor: "gray.200", textDecoration: "none" },
minW: "0",
maxW: "full",
display: "flex",
gap: "1",
})}
>
<HStack gap="1">
<Avatar
flexShrink={0}
handle={profileReference.handle}
width={large ? "8" : "6"}
/>
{showHandle && (
<Box minW="0" flexShrink={1}>
<Handle profileReference={profileReference} size={size} />
</Box>
)}
</HStack>
<Avatar
flexShrink={0}
handle={profileReference.handle}
width={large ? "8" : "6"}
/>
{showHandle && (
<Box minW="0" flexShrink={1}>
<Handle profileReference={profileReference} size={size} />
</Box>
)}
</Anchor>
);
}

1 comment on commit 32984b7

@vercel
Copy link

@vercel vercel bot commented on 32984b7 Dec 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.