1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 17:28:10 +00:00

Merge branch 'master' into css-fix

This commit is contained in:
Vladimir Volek 2018-09-17 17:13:38 +02:00
commit b3dac4b5ab
3 changed files with 4 additions and 6 deletions

View File

@ -15,7 +15,6 @@ const Wrapper = styled.div`
position: absolute; position: absolute;
z-index: 1070; z-index: 1070;
display: block; display: block;
background: red;
visibility: visible; visibility: visible;
border: 1px solid ${colors.DIVIDER}; border: 1px solid ${colors.DIVIDER};
border-radius: 3px; border-radius: 3px;

View File

@ -20,7 +20,6 @@ import type { Props } from '../common';
import Row from '../Row'; import Row from '../Row';
import RowCoin from '../RowCoin'; import RowCoin from '../RowCoin';
const Wrapper = styled.div``; const Wrapper = styled.div``;
const Text = styled.span` const Text = styled.span`

View File

@ -24,15 +24,15 @@ const TransitionContentWrapper = styled.div`
`; `;
const Footer = styled.div` const Footer = styled.div`
position: fixed; position: relative;
width: 320px;
bottom: 0; bottom: 0;
background: ${colors.MAIN}; background: ${colors.MAIN};
border-right: 1px solid ${colors.DIVIDER}; border-right: 1px solid ${colors.DIVIDER};
`; `;
const Body = styled.div` const Body = styled.div`
overflow: auto; width: 320px;
background: ${colors.LANDING};
`; `;
const Help = styled.div` const Help = styled.div`