Skip to content

Commit

Permalink
Responsive patient info table (#171)
Browse files Browse the repository at this point in the history
Signed-off-by: Courtney Gosselin <courtney@gosselin.io>
  • Loading branch information
CourtneyGosselin committed Aug 19, 2024
1 parent d95a93b commit 8c80c79
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/views/clinicalGenomic/clinicalPatientView.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,15 @@ function ClinicalPatientView() {
</div>
))}
</StyledTopLevelBox>
<div style={{ width: '100%', height: '68vh' }}>
<DataGrid rows={rows} columns={columns} pageSize={10} rowsPerPageOptions={[10]} hideFooterSelectedRowCount />
<div style={{ width: '100%' }}>
<DataGrid
sx={{ minHeight: '30vh', maxHeight: '68vh' }}
rows={rows}
columns={columns}
pageSize={10}
rowsPerPageOptions={[10]}
hideFooterSelectedRowCount
/>
</div>
{dateOfBirth && (
<TimelineContainer>
Expand Down

0 comments on commit 8c80c79

Please sign in to comment.