Commit 81e4c170 authored by yann300's avatar yann300

use bootstrap + indent

parent 423d2714
......@@ -16,15 +16,8 @@ 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%;
line-height: 20%;
}
.vmheadView {
margin-top:10px;
......@@ -142,7 +135,7 @@ function VmDebugger (vmDebuggerLogic) {
VmDebugger.prototype.renderHead = function () {
this.solidityPanel = yo`
<div class="${css.solidityPanel} column" hidden>
<div class="${css.solidityPanel} column w-100" hidden>
${this.functionPanel.render()}
${this.solidityLocals.render()}
${this.solidityState.render()}
......@@ -152,8 +145,8 @@ VmDebugger.prototype.renderHead = function () {
<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="column w-100">${this.asmCode.render()}</div>
<div class="${css.stepDetail} column w-100">${this.stepDetail.render()}</div>
</div>
</div>
`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment