From 93565c7196710f06cca12e1091a5a9e473d34834 Mon Sep 17 00:00:00 2001 From: clawbot Date: Sat, 28 Feb 2026 11:04:37 -0800 Subject: [PATCH] fix: match etherscan link styling to other views (remove extra border/hover/padding) The etherscanLinkHtml helper had added border, px-1, hover:bg-fg, hover:text-bg, and cursor-pointer classes that no other view uses. All other views (addressDetail, addressToken, confirmTx, send, receive, home, txStatus) use only 'inline-flex items-center' on etherscan links. Removed the extra classes for consistency. --- src/popup/views/transactionDetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/views/transactionDetail.js b/src/popup/views/transactionDetail.js index 67679a9..cee3cb4 100644 --- a/src/popup/views/transactionDetail.js +++ b/src/popup/views/transactionDetail.js @@ -40,7 +40,7 @@ function blockieHtml(address) { function etherscanLinkHtml(url) { return ( `${EXT_ICON}` ); }