Unverified Commit 83ac923b authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #2536 from ethereum/debuggerTabHeaders

Debugger tabs header font consistency
parents 2e4f1285 74e1fe68
......@@ -15,7 +15,7 @@ MemoryPanel.prototype.update = function (calldata) {
}
MemoryPanel.prototype.render = function () {
return yo`<div id="memorypanel" class="text-monospace small">${this.basicPanel.render()}</div>`
return yo`<div id="memorypanel">${this.basicPanel.render()}</div>`
}
module.exports = MemoryPanel
......@@ -11,7 +11,7 @@ StackPanel.prototype.update = function (calldata) {
}
StackPanel.prototype.render = function () {
return yo`<div id="stackpanel" class="text-monospace small">${this.basicPanel.render()}</div>`
return yo`<div id="stackpanel">${this.basicPanel.render()}</div>`
}
module.exports = StackPanel
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