Improved ColumnsArea on smaller windows, improved how ActionBar looks

This commit is contained in:
Eugen Rochko
2016-09-23 21:52:28 +02:00
parent 3f9708edc4
commit 0c75ce1122
3 changed files with 4 additions and 6 deletions

View File

@ -6,7 +6,7 @@ const ColumnsArea = React.createClass({
render () {
return (
<div style={{ display: 'flex', flexDirection: 'row', flex: '1', marginRight: '10px' }}>
<div style={{ display: 'flex', flexDirection: 'row', flex: '1', marginRight: '10px', marginBottom: '10px', overflowX: 'auto' }}>
{this.props.children}
</div>
);