Fix bad css properties

This commit is contained in:
finned-palmer 2021-06-30 17:24:10 -05:00 committed by ixv
parent d3650d41eb
commit f7879edf4c
3 changed files with 4 additions and 4 deletions

View File

@ -143,7 +143,7 @@ const BridgeInvoice = ({ payee, stopSending, satsAmount }) => {
mono mono
color="gray" color="gray"
fontSize="14px" fontSize="14px"
style={{ display: 'block', 'overflow-wrap': 'anywhere' }} style={{ display: 'block', overflowWrap: 'anywhere' }}
> >
{payee} {payee}
</Text> </Text>
@ -168,7 +168,7 @@ const BridgeInvoice = ({ payee, stopSending, satsAmount }) => {
color={inputColor} color={inputColor}
backgroundColor={inputBg} backgroundColor={inputBg}
borderColor={inputBorder} borderColor={inputBorder}
style={{ 'line-height': '4' }} style={{ lineHeight: '4' }}
onChange={(e) => checkTxHex(e)} onChange={(e) => checkTxHex(e)}
/> />
{localError !== '' && ( {localError !== '' && (

View File

@ -214,7 +214,7 @@ const Invoice = ({ stopSending, payee, satsAmount }) => {
mono mono
color="gray" color="gray"
fontSize="14px" fontSize="14px"
style={{ display: 'block', 'overflow-wrap': 'anywhere' }} style={{ display: 'block', overflowWrap: 'anywhere' }}
> >
{payee} {payee}
</Text> </Text>

View File

@ -19,7 +19,7 @@ const Sent = ({ payee, stopSending, satsAmount }) => {
</Row> </Row>
<Center> <Center>
<Text <Text
style={{ display: 'block', 'overflow-wrap': 'anywhere' }} style={{ display: 'block', overflowWrap: 'anywhere' }}
color="white" color="white"
>{`You sent BTC to ${payee}`}</Text> >{`You sent BTC to ${payee}`}</Text>
</Center> </Center>