Fixes too long desc and Token Balance Value (#2891) (#2902)

This commit is contained in:
Nicolas Gotchac
2016-10-26 21:25:03 +02:00
committed by Jaco Greeff
parent 0e14738147
commit f7259c26d1
4 changed files with 20 additions and 8 deletions

View File

@@ -16,6 +16,9 @@
*/
.byline {
color: #aaa;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.title {

View File

@@ -40,7 +40,7 @@ export default class Title extends Component {
{ this.props.title }
</h3>
<div className={ styles.byline }>
{ this.props.byline }
<span title={ this.props.byline }>{ this.props.byline }</span>
</div>
</div>
);