From c6edc8a4af05ec38389b90139e306f6f215f85ed Mon Sep 17 00:00:00 2001 From: slowbackspace <slowbackspace@gmail.com> Date: Thu, 24 Jan 2019 23:22:28 +0100 Subject: [PATCH] center add token info message --- .../Account/Summary/components/AddTokenMessage/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/Wallet/views/Account/Summary/components/AddTokenMessage/index.js b/src/views/Wallet/views/Account/Summary/components/AddTokenMessage/index.js index 1167de60..3c0e06c4 100644 --- a/src/views/Wallet/views/Account/Summary/components/AddTokenMessage/index.js +++ b/src/views/Wallet/views/Account/Summary/components/AddTokenMessage/index.js @@ -16,6 +16,10 @@ const StyledSVG = styled.svg` margin-bottom: 24px; `; +const StyledP = styled(P)` + text-align: center; +`; + const AddTokenMessage = () => ( <Wrapper> <StyledSVG width="84px" height="76px" viewBox="0 0 84 76"> @@ -51,7 +55,7 @@ const AddTokenMessage = () => ( </g> </StyledSVG> <H2>Add your tokens</H2> - <P isSmaller>Search for the token or add them manually by pasting token address into search input.</P> + <StyledP isSmaller>Search for the token or add them manually by pasting token address into search input.</StyledP> </Wrapper> ); export default AddTokenMessage; \ No newline at end of file