Skip to content

Commit

Permalink
style: anon recruitment button improvements
Browse files Browse the repository at this point in the history
truncate url, make entire badge component appear clickable to user using cursor pointer
  • Loading branch information
buckhalt committed Jan 29, 2024
1 parent f529b05 commit 4fc934f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export const AnonymousRecruitmentURLButton = ({
return (
<>
{allowAnonymousRecruitment ? (
<Badge onClick={handleCopyClick}>
{url}
<Badge onClick={handleCopyClick} className="cursor-pointer">
<p className="w-36 truncate">{url}</p>
<Copy className="ml-2 h-4 w-4" />
</Badge>
) : (
Expand Down

0 comments on commit 4fc934f

Please sign in to comment.