We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30bf5da commit 2ef4d67Copy full SHA for 2ef4d67
src/components/copyForLLMButton.tsx
@@ -60,12 +60,12 @@ export function CopyForLLMButton({markdownPath}: Props) {
60
type="button"
61
onClick={handleClick}
62
title="Copy page content for LLM"
63
- className="mr-2 float-right flex items-center gap-1 border rounded px-2 py-1 text-xs hover:bg-[var(--gray-2)]"
64
- style={{transform: 'scale(0.85)'}}
+ className="mr-2 float-right flex items-center gap-1 rounded px-2 py-1 text-xs hover:bg-[var(--gray-2)]"
+ style={{height: '25px'}}
65
data-mdast="ignore"
66
>
67
{copied ? <Check size={14} /> : <Clipboard size={14} />}
68
- <span className="whitespace-nowrap">Copy for LLM</span>
+ <span className="hidden sm:inline whitespace-nowrap">Copy for LLM</span>
69
</button>
70
);
71
}
0 commit comments