fix merge conflicts
This commit is contained in:
commit
0d9c3a29c8
2 changed files with 5 additions and 3 deletions
|
@ -12,7 +12,8 @@ class Editor extends React.Component {
|
|||
lineNumbers: true,
|
||||
styleActiveLine: true,
|
||||
inputStyle: 'contenteditable',
|
||||
mode: 'javascript'
|
||||
mode: 'javascript',
|
||||
lineWrapping: true
|
||||
});
|
||||
this._cm.on('change', () => { // eslint-disable-line
|
||||
// this.props.updateFileContent('sketch.js', this._cm.getValue());
|
||||
|
|
|
@ -6,12 +6,13 @@
|
|||
}
|
||||
|
||||
.editor-holder {
|
||||
flex-grow: 1;
|
||||
flex: 1 0 0;
|
||||
max-width: 45%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.preview-frame {
|
||||
flex-grow: 1;
|
||||
flex: 1 0 0;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
|
|
Loading…
Reference in a new issue