expandedtx wip

This commit is contained in:
mmv 2019-06-21 15:28:25 +04:00
parent dd3e69781f
commit 4ee254c9ab
2 changed files with 8 additions and 1 deletions

View File

@ -73,7 +73,11 @@ const TxsTable = (props: Props) => {
</Row>
</TableCell>
</TableRow>
<TableCell style={{ paddingBottom: 0, paddingTop: 0 }} colSpan={6}>
<TableCell
style={{ paddingBottom: 0, paddingTop: 0 }}
colSpan={6}
className={classes.extendedTxContainer}
>
<Collapse
in={expandedTx === row.nonce}
timeout="auto"

View File

@ -11,4 +11,7 @@ export const styles = () => ({
backgroundColor: '#fff3e2',
},
},
extendedTxContainer: {
padding: 0,
},
})