1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-08 23:21:00 +00:00

#408 Loading account loader is not centered

This commit is contained in:
Jan Czibula 2019-02-28 15:15:30 +01:00
parent 77e4f349e7
commit 576cb427de

View File

@ -46,6 +46,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)`
@ -55,6 +56,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) => {