parent
0e14738147
commit
f7259c26d1
@ -32,19 +32,25 @@
|
|||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
margin: 0.75em 0.5em 0 0;
|
margin: 0.75em 0.5em 0 0;
|
||||||
max-height: 24px;
|
max-height: 24px;
|
||||||
|
max-width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.balance img {
|
.balance img {
|
||||||
display: inline-block;
|
|
||||||
height: 32px;
|
height: 32px;
|
||||||
margin: -4px 1em 0 0;
|
margin: -4px 1em 0 0;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.balance div {
|
.balanceValue {
|
||||||
display: inline-block;
|
|
||||||
/*font-family: 'Roboto Mono', monospace;*/
|
|
||||||
line-height: 24px;
|
|
||||||
margin: 0 1em 0 0;
|
margin: 0 1em 0 0;
|
||||||
vertical-align: top;
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.balanceTag {
|
||||||
|
font-size: 0.85em;
|
||||||
|
padding-right: 0.75rem;
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,10 @@ class Balance extends Component {
|
|||||||
<img
|
<img
|
||||||
src={ imagesrc }
|
src={ imagesrc }
|
||||||
alt={ token.name } />
|
alt={ token.name } />
|
||||||
<div>{ value }<small> { token.tag }</small></div>
|
<div className={ styles.balanceValue }>
|
||||||
|
<span title={ value }> { value } </span>
|
||||||
|
</div>
|
||||||
|
<div className={ styles.balanceTag }> { token.tag } </div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
@ -16,6 +16,9 @@
|
|||||||
*/
|
*/
|
||||||
.byline {
|
.byline {
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
@ -40,7 +40,7 @@ export default class Title extends Component {
|
|||||||
{ this.props.title }
|
{ this.props.title }
|
||||||
</h3>
|
</h3>
|
||||||
<div className={ styles.byline }>
|
<div className={ styles.byline }>
|
||||||
{ this.props.byline }
|
<span title={ this.props.byline }>{ this.props.byline }</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user