1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-12-28 09:58:23 +00:00

fix line height in webusb connectdevice message

This commit is contained in:
slowbackspace 2019-01-25 12:58:32 +01:00
parent b9edb4abc8
commit 607fa9ff66

View File

@ -42,7 +42,7 @@ const Wrapper = styled.div`
const ConnectTrezorWrapper = styled.div` const ConnectTrezorWrapper = styled.div`
position: relative; position: relative;
top: 1px; top: 1px;
margin: 10px 10px 0px 10px; margin: 15px 15px 0px 15px;
animation: ${PULSATE} 1.3s ease-out infinite; animation: ${PULSATE} 1.3s ease-out infinite;
color: ${colors.GREEN_PRIMARY}; color: ${colors.GREEN_PRIMARY};
font-size: ${FONT_SIZE.BIG}; font-size: ${FONT_SIZE.BIG};
@ -50,11 +50,12 @@ const ConnectTrezorWrapper = styled.div`
`; `;
const StyledP = styled(P)` const StyledP = styled(P)`
margin: 10px 10px 0px 10px; line-height: auto;
margin: 15px 15px 0px 15px;
`; `;
const StyledButton = styled(Button)` const StyledButton = styled(Button)`
margin: 10px 10px 0px 10px; margin: 15px 15px 5px 15px;
`; `;
const Image = styled.img` const Image = styled.img`