mirror of
https://github.com/trezor/trezor-wallet
synced 2025-02-06 13:21:38 +00:00
centered title in bootloader, device and wallet settings
This commit is contained in:
parent
9a3d2ece4d
commit
06343ac2a2
@ -22,10 +22,14 @@ const StyledP = styled(P)`
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const StyledH1 = styled(H1)`
|
||||||
|
text-align: center;
|
||||||
|
`;
|
||||||
|
|
||||||
const Bootloader = () => (
|
const Bootloader = () => (
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<Row>
|
<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>
|
<StyledP>Please re-connect it</StyledP>
|
||||||
</Row>
|
</Row>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
|
@ -28,6 +28,10 @@ const StyledP = styled(P)`
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const StyledH1 = styled(H1)`
|
||||||
|
text-align: center;
|
||||||
|
`;
|
||||||
|
|
||||||
const DeviceSettings = () => (
|
const DeviceSettings = () => (
|
||||||
<Content>
|
<Content>
|
||||||
<Section>
|
<Section>
|
||||||
@ -37,7 +41,7 @@ const DeviceSettings = () => (
|
|||||||
color={colors.WARNING_PRIMARY}
|
color={colors.WARNING_PRIMARY}
|
||||||
icon={ICONS.WARNING}
|
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>
|
<StyledP>Please use Bitcoin wallet interface to change your device settings</StyledP>
|
||||||
<Link href="https://beta-wallet.trezor.io/">
|
<Link href="https://beta-wallet.trezor.io/">
|
||||||
<Button>Take me to the Bitcoin wallet</Button>
|
<Button>Take me to the Bitcoin wallet</Button>
|
||||||
|
@ -23,6 +23,10 @@ const Row = styled.div`
|
|||||||
padding: 50px 0;
|
padding: 50px 0;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const StyledH1 = styled(H1)`
|
||||||
|
text-align: center;
|
||||||
|
`;
|
||||||
|
|
||||||
const WalletSettings = () => (
|
const WalletSettings = () => (
|
||||||
<Content>
|
<Content>
|
||||||
<Section>
|
<Section>
|
||||||
@ -32,7 +36,7 @@ const WalletSettings = () => (
|
|||||||
color={colors.WARNING_PRIMARY}
|
color={colors.WARNING_PRIMARY}
|
||||||
icon={icons.WARNING}
|
icon={icons.WARNING}
|
||||||
/>
|
/>
|
||||||
<H1>Wallet settings is under construction</H1>
|
<StyledH1>Wallet settings is under construction</StyledH1>
|
||||||
<Link to="/">
|
<Link to="/">
|
||||||
<Button>Take me back</Button>
|
<Button>Take me back</Button>
|
||||||
</Link>
|
</Link>
|
||||||
|
Loading…
Reference in New Issue
Block a user