diff --git a/src/components/fdos/details.tsx b/src/components/fdos/details.tsx index a403c59971dc947d967604f76b91f26afd922869..1dfb055eeb62be4af2f817f3f9bbef4ad3bc9ccc 100644 --- a/src/components/fdos/details.tsx +++ b/src/components/fdos/details.tsx @@ -20,15 +20,16 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({ ...theme.applyStyles('dark', { backgroundColor: '#262c32' }) - + } })) const StyledTableRow = styled(TableRow)(({ theme }) => ({ - '&:nth-of-type(odd)': { backgroundColor: theme.palette.action.hover }, + '&:nth-of-type(odd)': { + backgroundColor: theme.palette.action.hover }, // hide last border '&:last-child td, &:last-child th': { - border: 0 + border: 0 } }))