Skip to content

Commit

Permalink
use bootstrap + indent
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Jun 30, 2020
1 parent 423d271 commit 4be3583
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions src/app/tabs/debugger/debuggerUI/VmDebugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,7 @@ var FullStoragesChangesPanel = require('./vmDebugger/FullStoragesChanges')
var DropdownPanel = require('./vmDebugger/DropdownPanel')

var css = csjs`
.solidityPanel {
width: 100%;
}
.asmCode {
width: 100%;
}
.stepDetail {
width: 100%;
line-height: 2O%;
}
.vmheadView {
Expand Down Expand Up @@ -142,18 +135,18 @@ function VmDebugger (vmDebuggerLogic) {

VmDebugger.prototype.renderHead = function () {
this.solidityPanel = yo`
<div class="${css.solidityPanel} column" hidden>
${this.functionPanel.render()}
${this.solidityLocals.render()}
${this.solidityState.render()}
<div class="${css.solidityPanel} column w-100" hidden>
${this.functionPanel.render()}
${this.solidityLocals.render()}
${this.solidityState.render()}
</div>
`
const headView = yo`
<div id="vmheadView" class="${css.vmheadView} container">
<div class="row" >
${this.solidityPanel}
<div class="${css.asmCode} column">${this.asmCode.render()}</div>
<div class="${css.stepDetail} column">${this.stepDetail.render()}</div>
<div class="${css.asmCode} column w-100">${this.asmCode.render()}</div>
<div class="${css.stepDetail} column w-100">${this.stepDetail.render()}</div>
</div>
</div>
`
Expand Down

0 comments on commit 4be3583

Please sign in to comment.