better position columns

This commit is contained in:
Jonathan Rainville 2018-10-24 11:01:03 -04:00
parent 54ee9417db
commit e456a76d19
1 changed files with 4 additions and 4 deletions

View File

@ -22,19 +22,19 @@ const Transactions = ({transactions, showLoadMore, loadMore}) => (
</Link> </Link>
</CardTitleIdenticon> </CardTitleIdenticon>
<Row> <Row>
<Col> <Col md={6}>
<strong>Block number</strong> <strong>Block number</strong>
<div>{transaction.blockNumber}</div> <div>{transaction.blockNumber}</div>
</Col> </Col>
<Col> <Col md={6}>
<strong>From</strong> <strong>From</strong>
<div>{transaction.from}</div> <div>{transaction.from}</div>
</Col> </Col>
<Col> <Col md={6}>
<strong>To</strong> <strong>To</strong>
<div>{transaction.to}</div> <div>{transaction.to}</div>
</Col> </Col>
<Col> <Col md={6}>
<strong>Type</strong> <strong>Type</strong>
<div>{transaction.to ? "Contract Call" : "Contract Creation"}</div> <div>{transaction.to ? "Contract Call" : "Contract Creation"}</div>
</Col> </Col>