Browse Source

Fix scrolling on small devices for account timelines and compose column

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
b8eda3026f
2 changed files with 5 additions and 6 deletions
  1. +3
    -5
      app/assets/javascripts/components/features/account/index.jsx
  2. +2
    -1
      app/assets/javascripts/components/features/ui/components/drawer.jsx

+ 3
- 5
app/assets/javascripts/components/features/account/index.jsx View File

@ -74,13 +74,11 @@ const Account = React.createClass({
return (
<Column>
<div style={{ display: 'flex', flexDirection: 'column', 'flex': '0 0 auto', height: '100%' }}>
<Header account={account} me={me} />
<Header account={account} me={me} />
<ActionBar account={account} me={me} onFollow={this.handleFollow} onBlock={this.handleBlock} />
<ActionBar account={account} me={me} onFollow={this.handleFollow} onBlock={this.handleBlock} />
{this.props.children}
</div>
{this.props.children}
</Column>
);
}

+ 2
- 1
app/assets/javascripts/components/features/ui/components/drawer.jsx View File

@ -5,7 +5,8 @@ const style = {
background: '#454b5e',
padding: '0',
display: 'flex',
flexDirection: 'column'
flexDirection: 'column',
overflowY: 'auto'
};
const Drawer = React.createClass({

Loading…
Cancel
Save