Genealogy as a feature #175

Merged
pierre merged 16 commits from genealogy_as_a_feature into master 2024-05-16 19:15:16 +00:00
2 changed files with 14 additions and 2 deletions
Showing only changes of commit c6b518d8de - Show all commits

View File

@ -132,7 +132,13 @@ function CouplesTable(p: {
sortable: false,
width: 60,
renderCell(params) {
return <CouplePhoto couple={params.row} />;
return (
<div
style={{ display: "flex", alignItems: "center", height: "100%" }}
>
<CouplePhoto couple={params.row} />
</div>
);
},
},

View File

@ -113,7 +113,13 @@ function MembersTable(p: {
sortable: false,
width: 60,
renderCell(params) {
return <MemberPhoto member={params.row} />;
return (
<div
style={{ display: "flex", alignItems: "center", height: "100%" }}
>
<MemberPhoto member={params.row} />
</div>
);
},
},