From e92185997f9a9400e2c3f5032a452bf9a4396cc0 Mon Sep 17 00:00:00 2001 From: pbca26 Date: Sat, 29 Jul 2017 23:47:49 +0300 Subject: [PATCH] equal balance boxes height --- .../walletsBalance/walletsBalance.render.js | 6 ++--- .../walletsNativeSend/walletsNativeSend.js | 21 ++++++++++++------ .../walletsNativeSend.render.js | 8 +++---- react/src/components/overrides.scss | 22 +++++++++++++++++++ 4 files changed, 43 insertions(+), 14 deletions(-) diff --git a/react/src/components/dashboard/walletsBalance/walletsBalance.render.js b/react/src/components/dashboard/walletsBalance/walletsBalance.render.js index 6ce2b32..e00db48 100644 --- a/react/src/components/dashboard/walletsBalance/walletsBalance.render.js +++ b/react/src/components/dashboard/walletsBalance/walletsBalance.render.js @@ -5,8 +5,8 @@ import Config from '../../../config'; const WalletsBalanceRender = function() { return ( -
-
+
+

{ translate('INDEX.ACTIVATING_WALLET_RT') }

@@ -23,7 +23,7 @@ const WalletsBalanceRender = function() {
-
+
- { this.zAddressCount && + { this.state.renderAddressDropdown &&
@@ -104,7 +104,7 @@ export const WalletsNativeSendRender = function() {
- { translate('INDEX.TOTAL') }: - { this.state.amount } - { this.state.fee }/kb = { Number(this.state.amount) - Number(this.state.fee) } + { translate('INDEX.TOTAL') }:  + { this.state.amount } - { this.state.fee }/kb = { Number(this.state.amount) - Number(this.state.fee) }  { this.props.ActiveCoin.coin }
diff --git a/react/src/components/overrides.scss b/react/src/components/overrides.scss index 5bee66c..c3af91e 100644 --- a/react/src/components/overrides.scss +++ b/react/src/components/overrides.scss @@ -648,4 +648,26 @@ select{ position: absolute; right: 4px; top: 3px; +} + +@media only screen and (min-width : 1201px) { + .wallet-widgets { + .flex { + display: flex; + flex-wrap: wrap; + } + > div { + display: flex; + + .widget, + .widget-content { + height: 100%; + + > div, + .clearfix { + height: 100%; + } + } + } + } } \ No newline at end of file