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
|
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 !== '' && (
|
||||||
|
@ -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>
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user