1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-28 17:01:02 +00:00

centered title in bootloader, device and wallet settings

This commit is contained in:
slowbackspace 2019-01-25 18:48:28 +01:00
parent 9a3d2ece4d
commit 06343ac2a2
3 changed files with 15 additions and 3 deletions

View File

@ -22,10 +22,14 @@ const StyledP = styled(P)`
text-align: center;
`;
const StyledH1 = styled(H1)`
text-align: center;
`;
const Bootloader = () => (
<Wrapper>
<Row>
<H1>Your device is in firmware update mode</H1>
<StyledH1>Your device is in firmware update mode</StyledH1>
<StyledP>Please re-connect it</StyledP>
</Row>
</Wrapper>

View File

@ -28,6 +28,10 @@ const StyledP = styled(P)`
text-align: center;
`;
const StyledH1 = styled(H1)`
text-align: center;
`;
const DeviceSettings = () => (
<Content>
<Section>
@ -37,7 +41,7 @@ const DeviceSettings = () => (
color={colors.WARNING_PRIMARY}
icon={ICONS.WARNING}
/>
<H1>Device settings is under construction</H1>
<StyledH1>Device settings is under construction</StyledH1>
<StyledP>Please use Bitcoin wallet interface to change your device settings</StyledP>
<Link href="https://beta-wallet.trezor.io/">
<Button>Take me to the Bitcoin wallet</Button>

View File

@ -23,6 +23,10 @@ const Row = styled.div`
padding: 50px 0;
`;
const StyledH1 = styled(H1)`
text-align: center;
`;
const WalletSettings = () => (
<Content>
<Section>
@ -32,7 +36,7 @@ const WalletSettings = () => (
color={colors.WARNING_PRIMARY}
icon={icons.WARNING}
/>
<H1>Wallet settings is under construction</H1>
<StyledH1>Wallet settings is under construction</StyledH1>
<Link to="/">
<Button>Take me back</Button>
</Link>