From 313b40c546e1622761c757ec5b2f4a30ca86df27 Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Mon, 7 Jan 2019 14:03:44 +0100 Subject: [PATCH] revert wrapping with Content component --- src/views/Wallet/views/Initialize/index.js | 22 ++++++++++------------ src/views/Wallet/views/Seedless/index.js | 16 +++++++--------- 2 files changed, 17 insertions(+), 21 deletions(-) diff --git a/src/views/Wallet/views/Initialize/index.js b/src/views/Wallet/views/Initialize/index.js index a537b57a..34843190 100644 --- a/src/views/Wallet/views/Initialize/index.js +++ b/src/views/Wallet/views/Initialize/index.js @@ -2,13 +2,13 @@ import styled from 'styled-components'; import { H1 } from 'components/Heading'; import Button from 'components/Button'; import Paragraph from 'components/Paragraph'; -import Content from 'views/Wallet/components/Content'; import React from 'react'; import { connect } from 'react-redux'; const Wrapper = styled.div` display: flex; flex-direction: column; + padding: 40px 35px 40px 35px; `; const Row = styled.div` @@ -26,17 +26,15 @@ const StyledParagraph = styled(Paragraph)` `; const Initialize = () => ( - - - -

Your device is in not initialized

- Please use Bitcoin wallet interface to start initialization process - - - -
-
-
+ + +

Your device is in not initialized

+ Please use Bitcoin wallet interface to start initialization process + + + +
+
); export default connect(null, null)(Initialize); diff --git a/src/views/Wallet/views/Seedless/index.js b/src/views/Wallet/views/Seedless/index.js index db253641..bde5f915 100644 --- a/src/views/Wallet/views/Seedless/index.js +++ b/src/views/Wallet/views/Seedless/index.js @@ -1,7 +1,6 @@ import styled from 'styled-components'; import { H1 } from 'components/Heading'; import Paragraph from 'components/Paragraph'; -import Content from 'views/Wallet/components/Content'; import React from 'react'; import { connect } from 'react-redux'; @@ -9,6 +8,7 @@ import { connect } from 'react-redux'; const Wrapper = styled.div` display: flex; flex-direction: column; + padding: 40px 35px 40px 35px; `; const Row = styled.div` @@ -24,14 +24,12 @@ const StyledParagraph = styled(Paragraph)` `; const Seedless = () => ( - - - -

Device is in seedless mode

- It's not suitable to use this service. -
-
-
+ + +

Device is in seedless mode

+ It's not suitable to use this service. +
+
); export default connect(null, null)(Seedless);