Skip to content

Commit d88178f

Browse files
authored
Merge pull request #713 from nwplus/jason-profilepics-to-circles
quick fix done to make profile picture in edit mode a circle, rather than a circle
2 parents 60cdd82 + 580f68a commit d88178f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/Social/ProfilePicturePopup.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,9 @@ const Grid = styled.div`
105105

106106
const ProfilePic = styled.img`
107107
width: 100%;
108-
height: 100%;
109108
object-fit: contain;
110109
cursor: pointer;
111-
border-radius: 100px;
110+
border-radius: 100%;
112111
border: 4px solid
113112
${p => (p.selected ? p.theme.colors.button.secondary.background.default : 'transparent')};
114113
transition: transform 0.3s ease;

0 commit comments

Comments
 (0)