Procházet zdrojové kódy

Fixed bug 2022

bugfix/2020
jovan.cirkovic před 3 roky
rodič
revize
02d381b56a

+ 1
- 1
src/components/Cards/ProfileCard/BigProfileCard/BigProfileCard.js Zobrazit soubor

@@ -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 />

+ 1
- 0
src/components/Cards/ProfileCard/BigProfileCard/BigProfileCard.styled.js Zobrazit soubor

@@ -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;
}

Načítá se…
Zrušit
Uložit