Fix for Drawer growing horizontally

This commit is contained in:
Eugen Rochko 2016-09-06 01:45:17 +02:00
parent 75fbde1c1a
commit aca988a16b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ const Drawer = React.createClass({
render () {
return (
<div style={{ width: '280px', flex: '0', boxSizing: 'border-box', background: '#454b5e', margin: '10px', marginRight: '0', padding: '0', display: 'flex', flexDirection: 'column' }}>
<div style={{ width: '280px', flex: '0 0 auto', boxSizing: 'border-box', background: '#454b5e', margin: '10px', marginRight: '0', padding: '0', display: 'flex', flexDirection: 'column' }}>
{this.props.children}
</div>
);