Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: unblock editor scroll bar
  • Loading branch information
brettkolodny committed Jun 2, 2025
commit 73f043fc4f3cc5a3abfb48fba4d2e8880567aa28
4 changes: 2 additions & 2 deletions src/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ export const Editor: FC = () => {
{/* CODE EDITOR */}
<div
className={cn(
"absolute mt-12 flex h-full w-full justify-end p-3",
"pointer-events-none absolute mt-12 flex w-full justify-end p-3",
tab !== "code" && "hidden",
)}
>
<Button className="z-10" variant="subtle" size="sm" onClick={onCopy}>
<Button className="pointer-events-auto z-10" variant="subtle" size="sm" onClick={onCopy}>
{codeCopied ? <CheckIcon /> : <CopyIcon />} Copy
</Button>
</div>
Expand Down