Add min width for description column on mobile

This commit is contained in:
Daniel Lautzenheiser 2022-11-02 15:50:41 -04:00
parent 48da1ffb61
commit af50c29bf1

View File

@ -14,6 +14,10 @@ const StyledTableContainer = styled(TableContainer)(
color: color:
${theme.palette.mode === 'light' ? '#751365' : '#ffb6ec'}; ${theme.palette.mode === 'light' ? '#751365' : '#ffb6ec'};
} }
& td:last-of-type {
min-width: 200px;
}
`, `,
); );