From f96dcfa95c691c4ceafb9b1ed217762b22e25a01 Mon Sep 17 00:00:00 2001 From: Sina Rohde <s.rohde@indiscale.com> Date: Mon, 23 Sep 2024 13:11:35 +0200 Subject: [PATCH] added dark mode and typagraphy --- src/components/fdos/details.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/fdos/details.tsx b/src/components/fdos/details.tsx index a403c59..1dfb055 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 } })) -- GitLab