Fix to allow layers sections to expand smoothly. Fixes #244

This commit is contained in:
orangemug
2018-04-13 17:00:51 +01:00
parent f205776695
commit 9808d44c71
3 changed files with 9 additions and 1 deletions

View File

@@ -21,7 +21,9 @@ export default class LayerEditorGroup extends React.Component {
<Collapser isCollapsed={this.props.isActive} />
</div>
<Collapse isOpened={this.props.isActive}>
{this.props.children}
<div className="react-collapse-container">
{this.props.children}
</div>
</Collapse>
</div>
}