1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-30 20:28:09 +00:00

Removed background from navigation body

This commit is contained in:
Vladimir Volek 2018-09-17 11:20:38 +02:00
parent 5ea44176bb
commit ad31b445f0
2 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,6 @@ import type { Props } from '../common';
import Row from '../Row'; import Row from '../Row';
import RowCoin from '../RowCoin'; import RowCoin from '../RowCoin';
const Wrapper = styled.div``; const Wrapper = styled.div``;
const Text = styled.span` const Text = styled.span`
@ -115,7 +114,7 @@ const AccountMenu = (props: Props): ?React$Element<string> => {
const selectedCoin = config.coins.find(c => c.network === location.state.network); const selectedCoin = config.coins.find(c => c.network === location.state.network);
if (!selected || !selectedCoin) return; if (!selected || !selectedCoin) return;
const fiatRate = props.fiat.find(f => f.network === selectedCoin.network); const fiatRate = props.fiat.find(f => f.network === selectedCoin.network);
const deviceAccounts: Accounts = findDeviceAccounts(accounts, selected, location.state.network); const deviceAccounts: Accounts = findDeviceAccounts(accounts, selected, location.state.network);

View File

@ -33,7 +33,6 @@ const Footer = styled.div`
const Body = styled.div` const Body = styled.div`
width: 320px; width: 320px;
background: ${colors.LANDING};
`; `;
const Help = styled.div` const Help = styled.div`