diff options
Minor clean up.
Diffstat (limited to 'ui/app/components/gas-tooltip.js')
-rw-r--r-- | ui/app/components/gas-tooltip.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/app/components/gas-tooltip.js b/ui/app/components/gas-tooltip.js index 29d1af4ad..68b7aea61 100644 --- a/ui/app/components/gas-tooltip.js +++ b/ui/app/components/gas-tooltip.js @@ -59,12 +59,7 @@ GasTooltip.prototype.render = function () { const { position, title, children, className } = this.props const { gasPrice, gasLimit } = this.state - return h('div', { - style: { - display: 'flex', - justifyContent: 'center', - } - }, [ + return h('div.gas-tooltip', {}, [ h('div.gas-tooltip-close-area', { onClick: this.onClose }), |