Skip to content

Commit

Permalink
Refactor components/UI/profileCard/profileCard.tsx (#872)
Browse files Browse the repository at this point in the history
Co-authored-by: fishseabowl <[email protected]>
  • Loading branch information
fishseabowl and fishseabowl authored Oct 14, 2024
1 parent fc366a0 commit ceffbad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/UI/profileCard/profileCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ const ProfileCard: FunctionComponent<ProfileCard> = ({
)}
</div>

<div className="flex flex-col h-full justify-between">
<div className="flex flex-col h-full justify-center">
<Typography type={TEXT_TYPE.BODY_SMALL} color="secondary" className={styles.accountCreationDate}>
{sinceDate ? `${sinceDate}` : ""}
</Typography>
<Typography type={TEXT_TYPE.H2} className={styles.profile_name}>{identity.domain.domain}</Typography>
<Typography type={TEXT_TYPE.H2} className={`${styles.profile_name} mt-2`}>{identity.domain.domain}</Typography>
<div className={styles.address_div}>
<CopyAddress
address={identity?.owner ?? ""}
Expand Down

0 comments on commit ceffbad

Please sign in to comment.