diff options
author | Jessica Stokes <hello@jessicastokes.net> | 2017-01-04 17:44:41 -0800 |
---|---|---|
committer | Jessica Stokes <hello@jessicastokes.net> | 2017-01-04 17:44:41 -0800 |
commit | aaee8c9b5d935143cf749fbea78f8cfee74ee37f (patch) | |
tree | 633873ec75f223de21d4836729dfbfa447d882b3 /app | |
parent | 312736cd1baaea12935e7decbb457c06299cc7d4 (diff) |
Disallow compose navbar from being shrunk
Diffstat (limited to 'app')
-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' }}> |