Skip to content

Commit

Permalink
fix: margin spacing on hover (#9635)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Krick <matt.krick@gmail.com>
  • Loading branch information
mattkrick committed Apr 11, 2024
1 parent c5a8eda commit 4f25cba
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,13 @@ const OrgDetails = (props: Props) => {
<div className='mb-4 flex w-full items-center'>
{modalPortal(<OrgAvatarInput picture={pictureOrDefault} orgId={orgId} />)}
{isBillingLeader ? (
<EditableAvatar
onClick={togglePortal}
picture={pictureOrDefault}
className='mr-4 h-16 w-16'
/>
<EditableAvatar onClick={togglePortal} picture={pictureOrDefault} className='h-16 w-16' />
) : (
<div className='mr-4 w-16'>
<div className='w-16'>
<Avatar picture={pictureOrDefault} />
</div>
)}
<div className='text-gray-600 ml-2 flex flex-grow flex-col items-start'>
<div className='text-gray-600 ml-6 flex flex-grow flex-col items-start'>
{isBillingLeader ? (
<EditableOrgName organization={organization} />
) : (
Expand Down

0 comments on commit 4f25cba

Please sign in to comment.