fix: make clipboard button sticky

This commit is contained in:
p-sw 2024-06-01 07:51:42 +09:00
parent b39279a259
commit e4bd8096d0

View File

@ -23,14 +23,14 @@ export function LoadedCode({ from }: { from: string }) {
return ( return (
<pre <pre
className={`relative hljs w-full h-auto max-h-64 rounded-lg ${ className={`relative hljs w-full h-64 rounded-lg ${
!state ? "animate-pulse" : "" !state ? "animate-pulse" : ""
}`} }`}
> >
<Button <Button
preset="default" preset="default"
size="icon" size="icon"
className="absolute top-4 right-4 text-black dark:text-white" className="sticky float-right top-0 text-black dark:text-white"
onClick={() => { onClick={() => {
navigator.clipboard.writeText(state ?? ""); navigator.clipboard.writeText(state ?? "");
toast({ toast({