Improved ColumnsArea on smaller windows, improved how ActionBar looks

This commit is contained in:
Eugen Rochko 2016-09-23 21:52:28 +02:00
parent 3f9708edc4
commit 0c75ce1122
3 changed files with 4 additions and 6 deletions

View file

@ -29,15 +29,13 @@ const ActionBar = React.createClass({
}
if (account.getIn(['relationship', 'followed_by'])) {
followBack = 'follows you';
followBack = 'Follows you';
}
}
return (
<div>
<div style={{ borderTop: '1px solid #363c4b', borderBottom: '1px solid #363c4b', padding: '10px', lineHeight: '36px' }}>
{actionButton}
{account.get('followers_count')} followers
{account.get('following_count')} following
{followBack}
</div>
);