From 1701ca75393cc3f576515888571e4edc08a70a6d Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Wed, 11 Jan 2023 12:30:43 +0100 Subject: [PATCH] improve ln url tip modal --- src/element/LNURLTip.css | 29 +++++++++++++++++++---------- src/element/LNURLTip.js | 25 ++++++++++++++++--------- 2 files changed, 35 insertions(+), 19 deletions(-) diff --git a/src/element/LNURLTip.css b/src/element/LNURLTip.css index 3fea13c..e478f96 100644 --- a/src/element/LNURLTip.css +++ b/src/element/LNURLTip.css @@ -1,5 +1,5 @@ .lnurl-tip { - background-color: var(--gray-secondary); + background-color: var(--gray-tertiary); padding: 10px; border-radius: 10px; width: 500px; @@ -9,6 +9,8 @@ .lnurl-tip .btn { background-color: inherit; + width: 210px; + margin: 0 0 10px 0; } .lnurl-tip .btn:hover { @@ -17,15 +19,28 @@ .lnurl-tip .invoice { display: flex; + flex-direction: column; + align-items: center; + justify-content: center; } .lnurl-tip .invoice .actions { + display: flex; + flex-direction: column; align-items: flex-start; - text-align: start; + text-align: center; } -.lnurl-tip .invoice .actions > div { - margin: 10px; +.lnurl-tip .invoice .actions .copy-action { + margin: 10px auto; +} + +.lnurl-tip .invoice .actions .pay-actions { + margin: 10px auto; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; } @media(max-width: 720px) { @@ -33,10 +48,4 @@ width: 100vw; margin: 0 10px; } - .lnurl-tip .invoice { - flex-direction: column; - } - .lnurl-tip .invoice .actions { - text-align: center; - } } diff --git a/src/element/LNURLTip.js b/src/element/LNURLTip.js index 3d856b1..5ad391e 100644 --- a/src/element/LNURLTip.js +++ b/src/element/LNURLTip.js @@ -3,6 +3,7 @@ import { useEffect, useMemo, useState } from "react"; import { bech32ToText } from "../Util"; import Modal from "./Modal"; import QrCode from "./QrCode"; +import Copy from "./Copy"; export default function LNURLTip(props) { const onClose = props.onClose || (() => { }); @@ -132,7 +133,7 @@ export default function LNURLTip(props) { function webLn() { if ("webln" in window) { return ( -
payWebLN()}>Pay with WebLN
+
payWebLN()}>Pay with WebLN
) } return null; @@ -168,15 +169,21 @@ export default function LNURLTip(props) { return ( <>
-
- -
+
- {pr ? <> - {webLn()} -
window.open(`lightning:${pr}`)}>Open Wallet
-
navigator.clipboard.writeText(pr)}>Copy Invoice
- : null} + {pr && ( + <> +
+ +
+
+
window.open(`lightning:${pr}`)}> + Open Wallet +
+
{webLn()}
+
+ + )}