Skip to content

Commit

Permalink
fix: fix visual bug on hover of PSBT copy, ref #4972
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Aug 2, 2024
1 parent 17d71a8 commit 6b4e816
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function PsbtInputOutputItemLayout({
label={hasCopied ? 'Copied!' : addressHoverLabel}
side="bottom"
>
<Box display="flex" height="16px">
<Box display="flex">
<styled.button _hover={{ bg: 'ink.component-background-hover' }} onClick={onCopy}>
{addressHoverLabel ? <CopyIcon variant="small" /> : null}
</styled.button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function PsbtAddressTotalItem({
label={hasCopied ? 'Copied!' : hoverLabel}
side="bottom"
>
<Box display="flex" height="16px">
<Box display="flex">
<Link onClick={onCopy} variant="text">
{hoverLabel ? <CopyIcon /> : null}
</Link>
Expand Down

0 comments on commit 6b4e816

Please sign in to comment.