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

View File

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

View File

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