mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
Styled wallet view
This commit is contained in:
parent
003b758bfe
commit
ba1f4c523f
@ -73,6 +73,12 @@ const Navigation = styled.nav`
|
|||||||
position: relative;
|
position: relative;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const Body = styled.div`
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
flex-direction: column;
|
||||||
|
`;
|
||||||
|
|
||||||
const Wallet = (props: WalletContainerProps) => (
|
const Wallet = (props: WalletContainerProps) => (
|
||||||
<AppWrapper>
|
<AppWrapper>
|
||||||
<Header />
|
<Header />
|
||||||
@ -85,7 +91,9 @@ const Wallet = (props: WalletContainerProps) => (
|
|||||||
</Navigation>
|
</Navigation>
|
||||||
<Notifications />
|
<Notifications />
|
||||||
<Log />
|
<Log />
|
||||||
|
<Body>
|
||||||
{ props.children }
|
{ props.children }
|
||||||
|
</Body>
|
||||||
<Footer />
|
<Footer />
|
||||||
</MainContent>
|
</MainContent>
|
||||||
</WalletWrapper>
|
</WalletWrapper>
|
||||||
|
Loading…
Reference in New Issue
Block a user