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>
</CardTitleIdenticon>
<Row>
<Col>
<Col md={6}>
<strong>Block number</strong>
<div>{transaction.blockNumber}</div>
</Col>
<Col>
<Col md={6}>
<strong>From</strong>
<div>{transaction.from}</div>
</Col>
<Col>
<Col md={6}>
<strong>To</strong>
<div>{transaction.to}</div>
</Col>
<Col>
<Col md={6}>
<strong>Type</strong>
<div>{transaction.to ? "Contract Call" : "Contract Creation"}</div>
</Col>