Display token addresses
This commit is contained in:
parent
9857f632d8
commit
0181b8a245
@ -46,11 +46,22 @@ a.link, a.link:hover, a.link:visited {
|
||||
}
|
||||
|
||||
.address {
|
||||
max-width: 250px;
|
||||
text-align: left;
|
||||
|
||||
div {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
|
||||
.description {
|
||||
text-align: left;
|
||||
|
||||
div {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.center {
|
||||
|
@ -58,6 +58,7 @@ export default class Event extends Component {
|
||||
<td className={ styles.description }>
|
||||
<div>{ isPending ? '' : coin.tla }</div>
|
||||
<div>{ isPending ? '' : coin.name }</div>
|
||||
<div>{ this.renderAddress(event.params.coin) }</div>
|
||||
</td>
|
||||
<td className={ styles.address }>
|
||||
{ this.renderAddress(event.params.owner) }
|
||||
|
@ -46,3 +46,9 @@
|
||||
.icon {
|
||||
margin: 0 0 -4px 1em;
|
||||
}
|
||||
|
||||
.byline {
|
||||
opacity: 0.75;
|
||||
font-size: 0.75em;
|
||||
padding-top: 0.25em;
|
||||
}
|
||||
|
@ -68,6 +68,9 @@ export default class Owner extends Component {
|
||||
<Token
|
||||
address={ token.address }
|
||||
tokenreg={ token.tokenreg } />
|
||||
<div className={ styles.byline }>
|
||||
{ token.address }
|
||||
</div>
|
||||
</div>
|
||||
));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user