mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 19:33:11 +02:00
fix: MCP copy buttons read as proper buttons in dark mode
Subtle/gray compact buttons rendered as low-contrast floating text; use the default variant (adaptive surface+border) idle, light teal when copied.
This commit is contained in:
@@ -40,7 +40,7 @@ function CopyInline({ value, label }: { value: string; label: string }) {
|
|||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
size="compact-xs"
|
size="compact-xs"
|
||||||
variant="subtle"
|
variant={copied ? "light" : "default"}
|
||||||
color={copied ? "teal" : "gray"}
|
color={copied ? "teal" : "gray"}
|
||||||
onClick={copy}
|
onClick={copy}
|
||||||
leftSection={
|
leftSection={
|
||||||
|
|||||||
Reference in New Issue
Block a user