Update MachineTableRow component styles
parent
f25f0d5438
commit
56d80a9dd1
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue