1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-05 22:00:59 +00:00

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

#408 Loading account loader is not centered
This commit is contained in:
Maroš 2019-02-28 17:31:23 +01:00 committed by GitHub
commit b68e894f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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