| @@ -25,7 +25,7 @@ const BigProfileCard = (props) => { | |||
| ); | |||
| }; | |||
| return ( | |||
| <ProfileCardContainer halfwidth={props.halfwidth}> | |||
| <ProfileCardContainer halfwidth={props.halfwidth} onClick={goToUser}> | |||
| <ProfileCardWrapper variant="outlined"> | |||
| {/* Profile Control (edit, remove, block, unblock) */} | |||
| <ProfileControl profile={props.profile} isAdmin bigProfileCard /> | |||
| @@ -10,6 +10,7 @@ export const ProfileCardContainer = styled(Box)` | |||
| margin-top: 34px; | |||
| overflow: hidden; | |||
| border-radius: 4px 4px; | |||
| cursor: pointer; | |||
| &:nth-child(1) { | |||
| margin-top: 20px; | |||
| } | |||