Add icons to column headers, click them to scroll to top

This commit is contained in:
Eugen Rochko 2016-09-06 00:44:28 +02:00
parent 1f18cf97b5
commit ac77170d19
4 changed files with 26 additions and 7 deletions

View file

@ -15,7 +15,7 @@ const StatusList = React.createClass({
render () {
return (
<div style={{ overflowY: 'scroll', flex: '1 1 auto' }}>
<div style={{ overflowY: 'scroll', flex: '1 1 auto' }} className='scrollable'>
<div>
{this.props.statuses.map((status) => {
return <Status key={status.get('id')} status={status} onReply={this.props.onReply} onReblog={this.props.onReblog} onFavourite={this.props.onFavourite} />;