From 343c93d1b8d7d4e34f5f294f051ad3febc9cf2f7 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 12 Jul 2024 20:20:33 +0000 Subject: [PATCH] Fix copy jumping to top of page --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 97bee84..9324e10 100644 --- a/index.html +++ b/index.html @@ -100,6 +100,7 @@ } .address-copy { float: right; + cursor: pointer; } BIP 353 Human Readable Names Resolver @@ -257,7 +258,7 @@ var addr_idx = 0; const base_and_params = bip353.substring(8).split("?"); const push_table_entry = function(ty, uri_pfx, contents) { - var value = "

" + ty + "" + CLIPBOARD_SVG + "

"; + var value = "

" + ty + "" + CLIPBOARD_SVG + "

"; if (!/^[\p{ASCII}]*$/u.test(contents)) { value = "Invalid"; } else { -- 2.39.5