diff --git a/src/js/views/Wallet/index.js b/src/js/views/Wallet/index.js index fb72d426..494981d1 100644 --- a/src/js/views/Wallet/index.js +++ b/src/js/views/Wallet/index.js @@ -59,21 +59,35 @@ const WalletWrapper = styled.div` } `; +const MainContent = styled.article` + flex: 1; + display: flex; + flex-direction: column; +`; + +const Navigation = styled.nav` + height: 64px; + box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06); + display: flex; + background: ${colors.WHITE}; + position: relative; +`; + const Wallet = (props: WalletContainerProps) => (
-
- + { props.children }
-
+
diff --git a/src/styles/content.less b/src/styles/content.less index ea86891a..d0e3785b 100644 --- a/src/styles/content.less +++ b/src/styles/content.less @@ -1,15 +1,6 @@ article { - flex: 1; - display: flex; - flex-direction: column; nav { - height: 64px; - box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06); - display: flex; - background: @color_white; - position: relative; - .account-tabs { position: relative; display: flex;