From ba1f4c523fcee2fbe7083f3ea1379ddf8a04f4a5 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Wed, 5 Sep 2018 10:35:56 +0200 Subject: [PATCH] Styled wallet view --- src/views/Wallet/index.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/views/Wallet/index.js b/src/views/Wallet/index.js index 26d6caaa..04b4c49b 100644 --- a/src/views/Wallet/index.js +++ b/src/views/Wallet/index.js @@ -73,6 +73,12 @@ const Navigation = styled.nav` position: relative; `; +const Body = styled.div` + display: flex; + flex: 1; + flex-direction: column; +`; + const Wallet = (props: WalletContainerProps) => (
@@ -85,7 +91,9 @@ const Wallet = (props: WalletContainerProps) => ( - { props.children } + + { props.children } +