Skip to content

Commit 32c91f2

Browse files
committed
Fix for copy button not being on the right
1 parent 87e2537 commit 32c91f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/webapp/app/components/code/TSQLResultsTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ function CopyableCell({
540540
return (
541541
<div
542542
className={cn(
543-
"relative flex items-center px-2 py-1.5",
543+
"relative flex w-full items-center px-2 py-1.5",
544544
"font-mono text-xs text-text-dimmed group-hover/row:text-text-bright",
545545
alignment === "right" && "justify-end"
546546
)}
@@ -555,7 +555,7 @@ function CopyableCell({
555555
e.preventDefault();
556556
copy();
557557
}}
558-
className="absolute right-0 top-1/2 z-10 flex -translate-y-1/2 cursor-pointer"
558+
className="absolute right-1 top-1/2 z-10 flex -translate-y-1/2 cursor-pointer"
559559
>
560560
<SimpleTooltip
561561
button={

0 commit comments

Comments
 (0)