Browse Source

Do not display elephant friend in single-column layout (#6222)

master
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
93555182c3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/compose/index.js

+ 1
- 1
app/javascript/mastodon/features/compose/index.js View File

@ -94,7 +94,7 @@ export default class Compose extends React.PureComponent {
<div className='drawer__inner' onFocus={this.onFocus}>
<NavigationContainer onClose={this.onBlur} />
<ComposeFormContainer />
<div className='mastodon' />
{multiColumn && <div className='mastodon' />}
</div>
<Motion defaultStyle={{ x: -100 }} style={{ x: spring(showSearch ? 0 : -100, { stiffness: 210, damping: 20 }) }}>

Loading…
Cancel
Save