Merge pull request #412 from trezor/fix/loading-account-centered

#408 Loading account loader is not centered
pull/413/head
Maroš 5 years ago committed by GitHub
commit b68e894f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -49,6 +49,7 @@ const Title = styled(H1)`
color: ${props => (props.type === 'progress' ? colors.TEXT_SECONDARY : '')}; color: ${props => (props.type === 'progress' ? colors.TEXT_SECONDARY : '')};
margin-left: 10px; margin-left: 10px;
text-align: center; text-align: center;
padding: 0;
`; `;
const Message = styled(P)` const Message = styled(P)`
@ -58,6 +59,7 @@ const Message = styled(P)`
const Row = styled.div` const Row = styled.div`
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center;
`; `;
const getExceptionPage = (exceptionPage) => { const getExceptionPage = (exceptionPage) => {

Loading…
Cancel
Save