Skip to content

Commit

Permalink
fix: any padders?
Browse files Browse the repository at this point in the history
  • Loading branch information
Sampiiiii committed Apr 15, 2024
1 parent d699df9 commit 49371fb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const SignedInUserCard: React.FunctionComponent<SignInUserCardProps> = ({
</h2>
</Link>
{user.teams?.map((team) => (
<Badge className="flex items-center justify-start rounded-sm bg-neutral-800 m-0.5 w-full">
<Badge className="flex items-center justify-start rounded-sm bg-neutral-800 m-0.5 w-full pt-1.5 pb-1.5">
<TeamIcon team={team.name} className="stroke-white mr-1" />
<text className="text-left ml-2 text-white">{team.name}</text>
</Badge>
Expand All @@ -102,7 +102,7 @@ export const SignedInUserCard: React.FunctionComponent<SignInUserCardProps> = ({
<TooltipTrigger asChild>
<Button className="bg-neutral-800" disabled={!onShiftReps}>
<Plus className="stroke-white" />
<span className="text-white">Add</span>
<span className="text-white ml-1.5">Add</span>
</Button>
</TooltipTrigger>
</PopoverTrigger>
Expand All @@ -118,7 +118,7 @@ export const SignedInUserCard: React.FunctionComponent<SignInUserCardProps> = ({
<TooltipTrigger asChild>
<Button onClick={handleSignOut} variant="destructive">
<LogOut />
<span>Sign Out</span>
<span className="ml-1.5">Sign Out</span>
</Button>
</TooltipTrigger>
<TooltipContent>
Expand Down

0 comments on commit 49371fb

Please sign in to comment.