mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 19:55:53 +03:00
Fix bad css properties
This commit is contained in:
parent
d3650d41eb
commit
f7879edf4c
@ -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 !== '' && (
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user