We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6906239 commit 9ec089aCopy full SHA for 9ec089a
packages/blocks-ui/src/canvas.js
@@ -52,12 +52,12 @@ const Copy = ({ toCopy }) => {
52
return (
53
<IconButton
54
onClick={copyToClipboardOnClick}
55
- sx={{ position: 'absolute', right: 0 }}
+ sx={{ position: 'absolute', right: '-4px' }}
56
>
57
{hasCopied ? (
58
<Check sx={{ color: 'green' }} aria-label="Copied" />
59
) : (
60
- <Clipboard aria-label="Copy" />
+ <Clipboard size={16} aria-label="Copy" />
61
)}
62
</IconButton>
63
)
0 commit comments