use bootstrap + indent

pull/11/head
yann300 4 years ago committed by ioedeveloper
parent b649430e46
commit c589e81530
  1. 21
      apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js

@ -16,15 +16,8 @@ var FullStoragesChangesPanel = require('./vmDebugger/FullStoragesChanges')
var DropdownPanel = require('./vmDebugger/DropdownPanel') var DropdownPanel = require('./vmDebugger/DropdownPanel')
var css = csjs` var css = csjs`
.solidityPanel {
width: 100%;
}
.asmCode {
width: 100%;
}
.stepDetail { .stepDetail {
width: 100%; line-height: 20%;
line-height: 2O%;
} }
.vmheadView { .vmheadView {
margin-top:10px; margin-top:10px;
@ -142,18 +135,18 @@ function VmDebugger (vmDebuggerLogic) {
VmDebugger.prototype.renderHead = function () { VmDebugger.prototype.renderHead = function () {
this.solidityPanel = yo` this.solidityPanel = yo`
<div class="${css.solidityPanel} column" hidden> <div class="${css.solidityPanel} column w-100" hidden>
${this.functionPanel.render()} ${this.functionPanel.render()}
${this.solidityLocals.render()} ${this.solidityLocals.render()}
${this.solidityState.render()} ${this.solidityState.render()}
</div> </div>
` `
const headView = yo` const headView = yo`
<div id="vmheadView" class="${css.vmheadView} container"> <div id="vmheadView" class="${css.vmheadView} container">
<div class="row" > <div class="row" >
${this.solidityPanel} ${this.solidityPanel}
<div class="${css.asmCode} column">${this.asmCode.render()}</div> <div class="column w-100">${this.asmCode.render()}</div>
<div class="${css.stepDetail} column">${this.stepDetail.render()}</div> <div class="${css.stepDetail} column w-100">${this.stepDetail.render()}</div>
</div> </div>
</div> </div>
` `

Loading…
Cancel
Save