1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-02-12 08:02:39 +00:00

fix width of the backup button

This commit is contained in:
slowbackspace 2019-02-25 16:28:41 +01:00
parent a01ca0fb78
commit cf86dc93a2

View File

@ -59,6 +59,10 @@ const Row = styled.div`
} }
`; `;
const BackupButton = styled(Button)`
width: 100%;
`;
const WarnButton = styled(Button)` const WarnButton = styled(Button)`
background: transparent; background: transparent;
border-color: ${colors.WARNING_PRIMARY}; border-color: ${colors.WARNING_PRIMARY};
@ -148,7 +152,7 @@ class ConfirmUnverifiedAddress extends PureComponent<Props> {
<Content> <Content>
<Row> <Row>
<Link href="https://wallet.trezor.io/?backup"> <Link href="https://wallet.trezor.io/?backup">
<Button>Create a backup in 3 minutes</Button> <BackupButton>Create a backup in 3 minutes</BackupButton>
</Link> </Link>
</Row> </Row>
</Content> </Content>