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

Commit

Permalink
Update feed tip tile per QA feedback (#1872)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharit-tan committed Sep 7, 2022
1 parent 3f32abc commit 95c1392
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ export const ProfilePicture = (props: ProfilePictureProps) => {
const profilePictureElement = (
<DynamicImage
onClick={handleClick}
wrapperClassName={cn(styles.profilePictureWrapper, className)}
wrapperClassName={styles.profilePictureWrapper}
skeletonClassName={styles.profilePictureSkeleton}
className={styles.profilePicture}
className={cn(styles.profilePicture, className)}
image={profilePicture}
/>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

.usersContainer {
display: flex;
flex-wrap: wrap;
align-items: center;
font-size: var(--font-s);
column-gap: 10px;
Expand All @@ -47,6 +46,7 @@
}
.profilePicture {
cursor: pointer;
border: 1px solid var(--neutral-light-8);
}
.name {
display: flex;
Expand Down

0 comments on commit 95c1392

Please sign in to comment.