You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: restore copy icon visibility on code block hover
The SVG path fill was using `hsla(var(--foreground-secondary))` which
references a CSS variable that doesn't exist in Tailwind v4 — the correct
variable is `--color-foreground-secondary`. This made the copy icon
invisible while the button itself was still present and clickable.
Changed the fill to `currentColor` so the icon inherits the correct color
from the button's `text-foreground-secondary` CSS class.
0 commit comments