diff --git a/css/style.css b/css/style.css index b70501a..12760c9 100644 --- a/css/style.css +++ b/css/style.css @@ -1378,6 +1378,7 @@ body { font-family: "Courier New", monospace; font-size: 0.8rem; flex: 1; + cursor: pointer; } .tx-hash { @@ -4403,7 +4404,6 @@ sm-popup::part(popup) { color: var(--primary-color); } - @media (max-width: 768px) { .tx-detail-row { flex-direction: column; @@ -4709,7 +4709,6 @@ sm-popup::part(popup) { color: var(--text-primary); } - @media (max-width: 768px) { .transaction-details-header { flex-direction: row; @@ -5005,7 +5004,6 @@ sm-popup::part(popup) { } } - @media (max-width: 600px) { .balance-header { display: flex; @@ -5032,6 +5030,8 @@ sm-popup::part(popup) { } } -.detail-link{ - text-decoration: none; color:white; cursor: pointer; -} \ No newline at end of file +.detail-link { + text-decoration: none; + color: white; + cursor: pointer; +} diff --git a/index.html b/index.html index 7765503..5a3914a 100644 --- a/index.html +++ b/index.html @@ -1106,7 +1106,7 @@ const txCard = document.querySelector("#txOutput").closest(".card"); if (txCard) txCard.style.display = "none"; }); - + document.addEventListener("DOMContentLoaded", () => { const params = new URLSearchParams(window.location.search); const page = params.get("page"); @@ -1141,7 +1141,6 @@ transactionHistory(url, __historyAddress); }); } -