Fix icons alignment
This commit is contained in:
parent
cd7462ffb1
commit
c6b518d8de
@ -132,7 +132,13 @@ function CouplesTable(p: {
|
|||||||
sortable: false,
|
sortable: false,
|
||||||
width: 60,
|
width: 60,
|
||||||
renderCell(params) {
|
renderCell(params) {
|
||||||
return <CouplePhoto couple={params.row} />;
|
return (
|
||||||
|
<div
|
||||||
|
style={{ display: "flex", alignItems: "center", height: "100%" }}
|
||||||
|
>
|
||||||
|
<CouplePhoto couple={params.row} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -113,7 +113,13 @@ function MembersTable(p: {
|
|||||||
sortable: false,
|
sortable: false,
|
||||||
width: 60,
|
width: 60,
|
||||||
renderCell(params) {
|
renderCell(params) {
|
||||||
return <MemberPhoto member={params.row} />;
|
return (
|
||||||
|
<div
|
||||||
|
style={{ display: "flex", alignItems: "center", height: "100%" }}
|
||||||
|
>
|
||||||
|
<MemberPhoto member={params.row} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user