From 2a745e853e36b0b3f20c9f04560f3afeb967f330 Mon Sep 17 00:00:00 2001 From: Srija-65 Date: Tue, 9 Jun 2026 13:18:58 +0530 Subject: [PATCH] Issue #762: Improve copy identifier button click target ## Summary - Increase the clickable area of the copy identifier button - Improve accessibility and ease of interaction - Keep the visual appearance consistent ## Testing - Verified the copy button remains functional - Verified the click target is larger than before --- src/views/components/Copy.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/components/Copy.tsx b/src/views/components/Copy.tsx index 421861404..09df2430a 100644 --- a/src/views/components/Copy.tsx +++ b/src/views/components/Copy.tsx @@ -5,13 +5,18 @@ import CopyIcon from '@assets/icons/global/copy.svg'; import { DarkButton } from './buttons'; export const CopyStyle = styled.button` - padding: 0px; + padding: 8px; + min-width: 32px; + min-height: 32px; background: none; color: inherit; border: none; font: inherit; cursor: pointer; outline: inherit; + display: flex; + align-items: center; + justify-content: center; & svg { color: ${({ theme }) => theme.colors.text400};