1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-02-11 23:52:47 +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)`
background: transparent;
border-color: ${colors.WARNING_PRIMARY};
@ -148,7 +152,7 @@ class ConfirmUnverifiedAddress extends PureComponent<Props> {
<Content>
<Row>
<Link href="https://wallet.trezor.io/?backup">
<Button>Create a backup in 3 minutes</Button>
<BackupButton>Create a backup in 3 minutes</BackupButton>
</Link>
</Row>
</Content>