0
0
Fork 0

Improving styling a little bit

This commit is contained in:
Eugen Rochko 2016-08-31 16:48:21 +02:00
parent 72591cc6d5
commit 1e0e17ba85
4 changed files with 17 additions and 11 deletions

View file

@ -21,7 +21,7 @@ const Status = React.createClass({
<Avatar src={status.getIn(['account', 'avatar'])} />
<div style={{ flex: '1 1 auto', marginLeft: '10px' }}>
<div style={{ overflow: 'hidden' }}>
<div style={{ overflow: 'hidden', fontSize: '15px' }}>
<div style={{ float: 'right' }}>
<a href={status.get('url')} style={{ textDecoration: 'none' }}><RelativeTimestamp timestamp={status.get('created_at')} /></a>
</div>
@ -29,7 +29,7 @@ const Status = React.createClass({
<DisplayName account={status.get('account')} />
</div>
<div className='status__content' dangerouslySetInnerHTML={content} style={{ fontSize: '14px' }} />
<div className='status__content' dangerouslySetInnerHTML={content} />
</div>
</div>
);