Update MachineTableRow component styles

master^2
Tudor Stanciu 2024-03-31 23:19:24 +03:00
parent f25f0d5438
commit 56d80a9dd1
1 changed files with 6 additions and 2 deletions

View File

@ -14,7 +14,7 @@ const MachineTableRow = ({ machine, actions, logs, addLog }) => {
<React.Fragment> <React.Fragment>
<TableRow <TableRow
sx={{ sx={{
"& > *": { "& .MuiTableCell-root": {
borderBottom: "unset" borderBottom: "unset"
} }
}} }}
@ -37,7 +37,11 @@ const MachineTableRow = ({ machine, actions, logs, addLog }) => {
<TableRow> <TableRow>
<TableCell style={{ paddingBottom: 0, paddingTop: 0 }} colSpan={6}> <TableCell style={{ paddingBottom: 0, paddingTop: 0 }} colSpan={6}>
<Collapse in={open} timeout="auto" unmountOnExit> <Collapse in={open} timeout="auto" unmountOnExit>
<MachineCollapsedContent description={machine.description} logs={logs} style={{ paddingBottom: "10px" }} /> <MachineCollapsedContent
description={machine.description}
logs={logs}
style={{ paddingBottom: "0.5rem" }}
/>
</Collapse> </Collapse>
</TableCell> </TableCell>
</TableRow> </TableRow>