diff options
author | Eugen <eugen@zeonfederated.com> | 2017-01-05 02:57:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-05 02:57:13 +0100 |
commit | db21724a5a74d08f895753bf755cbf558148d9b5 (patch) | |
tree | 633873ec75f223de21d4836729dfbfa447d882b3 /app/assets/javascripts/components/features/compose | |
parent | 98b83aca372fabdfc32b05c1eb72c80a79102e53 (diff) | |
parent | aaee8c9b5d935143cf749fbea78f8cfee74ee37f (diff) |
Merge pull request #393 from ticky/qol-for-four-inch-phones
Improve experience on 4-inch phones
Diffstat (limited to 'app/assets/javascripts/components/features/compose')
-rw-r--r-- | app/assets/javascripts/components/features/compose/components/navigation_bar.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/compose/components/navigation_bar.jsx b/app/assets/javascripts/components/features/compose/components/navigation_bar.jsx index df94c30d2..23d695f13 100644 --- a/app/assets/javascripts/components/features/compose/components/navigation_bar.jsx +++ b/app/assets/javascripts/components/features/compose/components/navigation_bar.jsx @@ -16,7 +16,7 @@ const NavigationBar = React.createClass({ render () { return ( - <div style={{ padding: '10px', display: 'flex', cursor: 'default' }}> + <div style={{ padding: '10px', display: 'flex', flexShrink: '0', cursor: 'default' }}> <Permalink href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`} style={{ textDecoration: 'none' }}><Avatar src={this.props.account.get('avatar')} size={40} /></Permalink> <div style={{ flex: '1 1 auto', marginLeft: '8px', color: '#9baec8' }}> |