|
@@ -68,23 +68,34 @@ export default class App extends React.Component {
|
|
|
{this.GUI.renderMainBar()}
|
|
|
</div>
|
|
|
<div style={{position: 'relative'}}>
|
|
|
+
|
|
|
<div className="horizontal_bars">
|
|
|
<div ref={this.toolboxRef} className="toolbox">
|
|
|
<div className="tool_icon_bar">{this.GUI.renderToolBox()}</div>
|
|
|
<div className="moduleBar">{this.GUI.renderModuleBar()}</div>
|
|
|
</div>
|
|
|
|
|
|
- <div className="sidebar">
|
|
|
- {this.GUI.renderSideBar()}
|
|
|
+ <div className="wrapper">
|
|
|
+ <div className="pageNav">
|
|
|
+ { this.GUI.renderPageBar()}
|
|
|
+ </div>
|
|
|
+ <div className="wrapperPhone">
|
|
|
+ <div style={{flex:1}}>
|
|
|
+ {/*This is a comment*/}
|
|
|
+ <div onClick={(e) => this.dragPage(e)} className="playground" style={{zoom:this.state.zoom}}>
|
|
|
+ <div className="phone">
|
|
|
+ {this.GUI.mobileRender()}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div className="sidebar">
|
|
|
+ {this.GUI.renderSideBar()}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- {/*This is a comment*/}
|
|
|
- <div onClick={(e) => this.dragPage(e)} className="playground" style={{zoom:this.state.zoom}}>
|
|
|
- <div className="pageNav">{ this.GUI.renderPageBar()}</div>
|
|
|
- <div className="phone">
|
|
|
- {this.GUI.mobileRender()}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+
|
|
|
+
|
|
|
</div>
|
|
|
</div>
|
|
|
);
|