fix: add qrcode whitespace

This commit is contained in:
Sérgio Salgado 2021-12-14 20:18:32 +00:00
parent 9553bf8fc9
commit 5eb342a640
2 changed files with 30 additions and 2 deletions

View file

@ -126,6 +126,23 @@ const styles = {
},
errorMessage: {
color: errorColor
},
qrCodeImageWrapper: {
display: 'flex',
flexDirection: 'column',
backgroundColor: 'white',
border: `5px solid ${primaryColor}`,
padding: 5,
borderRadius: 15
},
qrCodeScanMessage: {
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
margin: [[0, 0, 20, 20]],
'& > p': {
marginLeft: 10
}
}
}