fix: make clipboard button sticky
This commit is contained in:
parent
b39279a259
commit
e4bd8096d0
@ -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({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user