Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
Fix profile left nav tile spacing and order (#1871)
Browse files Browse the repository at this point in the history
Co-authored-by: Saliou Diallo <saliou@audius.co>
  • Loading branch information
sddioulde and Saliou Diallo committed Sep 7, 2022
1 parent 0297699 commit 35393b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/web/src/components/upload/UploadChip.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
color: var(--neutral-light-2);

padding: 32px;
margin-top: 32px;
}

.uploadChip:hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ export const ProfileLeftNav = (props: ProfileLeftNavProps) => {
) : null}
<SupportingList />
<TopSupporters />
{isArtist ? <ProfileTags goToRoute={goToRoute} tags={tags} /> : null}
<ProfileMutuals />
{isArtist ? <ProfileTags goToRoute={goToRoute} tags={tags} /> : null}
{isOwner && !isArtist && (
<UploadChip type='track' variant='nav' onClick={onClickUploadChip} />
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}

.tags {
padding-bottom: 24px;
margin-top: 32px;
}

.tags > .tagsContent {
Expand Down

0 comments on commit 35393b5

Please sign in to comment.