From 19e3e983deb16e920f5db6e0a567be424ef93b24 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 17 Sep 2018 10:21:41 +0200 Subject: [PATCH 1/4] Fixed width in navigation body --- src/views/Wallet/components/LeftNavigation/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Wallet/components/LeftNavigation/index.js b/src/views/Wallet/components/LeftNavigation/index.js index 15d2821f..6f38a2af 100644 --- a/src/views/Wallet/components/LeftNavigation/index.js +++ b/src/views/Wallet/components/LeftNavigation/index.js @@ -31,7 +31,7 @@ const Footer = styled.div` `; const Body = styled.div` - overflow: auto; + width: 320px; background: ${colors.LANDING}; `; From 8a8d17e08e6b49d42ff3b22dd6c9d50c55a65e73 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 17 Sep 2018 10:24:51 +0200 Subject: [PATCH 2/4] Fixed footer --- src/views/Wallet/components/LeftNavigation/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/Wallet/components/LeftNavigation/index.js b/src/views/Wallet/components/LeftNavigation/index.js index 6f38a2af..dda6669d 100644 --- a/src/views/Wallet/components/LeftNavigation/index.js +++ b/src/views/Wallet/components/LeftNavigation/index.js @@ -24,7 +24,8 @@ const TransitionContentWrapper = styled.div` `; const Footer = styled.div` - position: fixed; + position: relative; + width: 320px; bottom: 0; background: ${colors.MAIN}; border-right: 1px solid ${colors.DIVIDER}; From 5ea44176bb773d4eea4d816c1e50fa254e491d87 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 17 Sep 2018 11:14:24 +0200 Subject: [PATCH 3/4] Removed red background --- src/components/Tooltip/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Tooltip/index.js b/src/components/Tooltip/index.js index 656c0b19..3872a698 100644 --- a/src/components/Tooltip/index.js +++ b/src/components/Tooltip/index.js @@ -15,7 +15,6 @@ const Wrapper = styled.div` position: absolute; z-index: 1070; display: block; - background: red; visibility: visible; border: 1px solid ${colors.DIVIDER}; border-radius: 3px; From ad31b445f07e86cf44eccf48603fa274a07edb59 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 17 Sep 2018 11:20:38 +0200 Subject: [PATCH 4/4] Removed background from navigation body --- .../components/LeftNavigation/components/AccountMenu/index.js | 3 +-- src/views/Wallet/components/LeftNavigation/index.js | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js b/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js index 3b597266..a11cb848 100644 --- a/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js +++ b/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js @@ -20,7 +20,6 @@ import type { Props } from '../common'; import Row from '../Row'; import RowCoin from '../RowCoin'; - const Wrapper = styled.div``; const Text = styled.span` @@ -115,7 +114,7 @@ const AccountMenu = (props: Props): ?React$Element => { const selectedCoin = config.coins.find(c => c.network === location.state.network); if (!selected || !selectedCoin) return; - + const fiatRate = props.fiat.find(f => f.network === selectedCoin.network); const deviceAccounts: Accounts = findDeviceAccounts(accounts, selected, location.state.network); diff --git a/src/views/Wallet/components/LeftNavigation/index.js b/src/views/Wallet/components/LeftNavigation/index.js index dda6669d..507d2c0e 100644 --- a/src/views/Wallet/components/LeftNavigation/index.js +++ b/src/views/Wallet/components/LeftNavigation/index.js @@ -33,7 +33,6 @@ const Footer = styled.div` const Body = styled.div` width: 320px; - background: ${colors.LANDING}; `; const Help = styled.div`