1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-30 09:51:05 +00:00

center add token info message

This commit is contained in:
slowbackspace 2019-01-24 23:22:28 +01:00
parent f57acdde46
commit c6edc8a4af

View File

@ -16,6 +16,10 @@ const StyledSVG = styled.svg`
margin-bottom: 24px; margin-bottom: 24px;
`; `;
const StyledP = styled(P)`
text-align: center;
`;
const AddTokenMessage = () => ( const AddTokenMessage = () => (
<Wrapper> <Wrapper>
<StyledSVG width="84px" height="76px" viewBox="0 0 84 76"> <StyledSVG width="84px" height="76px" viewBox="0 0 84 76">
@ -51,7 +55,7 @@ const AddTokenMessage = () => (
</g> </g>
</StyledSVG> </StyledSVG>
<H2>Add your tokens</H2> <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> </Wrapper>
); );
export default AddTokenMessage; export default AddTokenMessage;