+
+
+ ${state.showAmount(state)}
+ ${state.showTransaction(state)}
+
+ ${state.footer(state)}
+ `,
+ fields: html``,
+ events: {
+ handleSubmit: state => async event => {
+ event.preventDefault()
+ event.stopPropagation()
+
+ txInfo.close()
+ },
+ },
+ }
+ )
+
+ // @ts-ignore
+ globals.txInfo = txInfo;
+
+ return txInfo
+})
+
+export default txInfoRig
\ No newline at end of file
diff --git a/src/styles/dialog.css b/src/styles/dialog.css
index 0c714a7..263453f 100644
--- a/src/styles/dialog.css
+++ b/src/styles/dialog.css
@@ -452,6 +452,13 @@ dialog.responsive fieldset.contact section article {
align-items: stretch;
}
+dialog .txid {
+ max-width: 100%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ display: block;
+}
+
@media (min-width: 650px) {
dialog.responsive {
width: fit-content;