Skip to content

Commit

Permalink
Fixed user-info styling in user profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Idan-sh committed Aug 27, 2024
1 parent aaa65fb commit 9b7dac0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/cmps/profile/UserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,9 @@ export default function UserProfile() {
<div className="user-profile__user-info">
<h3>Info:</h3>
<br />
<h3 className="user-profile__user-info__label">Created:</h3>
<br />
{getTimePassed(userData.timeCreated)} <br />
<h3 className="user-profile__user-info__label">User ID:</h3> {userData.userId}
<h4 className="user-profile__user-info__label">Created:</h4>
{getTimePassed(userData.timeCreated)} <br /> <br />
<h4 className="user-profile__user-info__label">User ID:</h4> {userData.userId}
</div>
</div>
</div>
Expand Down

0 comments on commit 9b7dac0

Please sign in to comment.