Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 5555815

Browse files
authored
Merge pull request #1251 from lightninglabs/dev/sat-superscript
Fix UI bug where SAT superscript is white on QR screen.
2 parents 2b93c8a + 2b324bc commit 5555815

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/view/invoice-qr-mobile.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ const baseStyles = {
2828
numeral: {
2929
color: color.blackText,
3030
},
31+
unit: {
32+
color: color.blackText,
33+
},
3134
qrWrapper: {
3235
margin: 40,
3336
},
@@ -83,7 +86,9 @@ const InvoiceQRView = ({ store, nav, invoice }) => (
8386
<BalanceLabelNumeral style={styles.numeral}>
8487
{store.invoiceAmountLabel}
8588
</BalanceLabelNumeral>
86-
<BalanceLabelUnit>{store.unitLabel}</BalanceLabelUnit>
89+
<BalanceLabelUnit style={styles.unit}>
90+
{store.unitLabel}
91+
</BalanceLabelUnit>
8792
</BalanceLabel>
8893
<NamedField name="Note">{store.invoice.note}</NamedField>
8994
<QRCode size={styles.qrcode.height} style={styles.qrWrapper}>

0 commit comments

Comments
 (0)