Skip to content

Commit

Permalink
clients/input: adjust clipboardinput bg
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwidlund committed Nov 12, 2024
1 parent ad5a874 commit 714c0e6
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const CopyToClipboardInput = ({
onCopy,
buttonLabel,
disabled = false,
className = "",
className = '',
}: {
value: string
onCopy?: () => void
Expand All @@ -34,10 +34,12 @@ const CopyToClipboardInput = ({
}

return (
<div className={twMerge(
"dark:border-polar-700 dark:bg-polar-800 flex w-full flex-row items-center overflow-hidden rounded-full border bg-gray-50",
className
)}>
<div
className={twMerge(
'dark:border-polar-700 dark:bg-polar-800 flex w-full flex-row items-center overflow-hidden rounded-full border bg-white',
className,
)}
>
<Input
className="dark:text-polar-400 !focus:border-transparent !focus:ring-transparent !dark:focus:border-transparent !dark:focus:ring-transparent w-full grow border-none bg-transparent font-mono text-xs text-gray-600 focus-visible:ring-transparent dark:bg-transparent dark:focus-visible:ring-transparent"
value={value}
Expand Down

0 comments on commit 714c0e6

Please sign in to comment.