fix: eliminate quick prompt panel flash on show

Add animation-fill-mode 'both' to .qp-panel-enter so the from-keyframe
(opacity: 0) applies immediately on mount, preventing the single-frame
flash of the opaque surface background before the entrance animation
begins.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
David Kaya
2026-04-14 11:17:23 +02:00
co-authored by Copilot
parent 6068ee42e1
commit bed6427dfc
+1 -1
View File
@@ -762,7 +762,7 @@ html:has(body[data-quickprompt]) {
}
.qp-panel-enter {
animation: qp-panel-in 0.2s cubic-bezier(0.16, 1, 0.3, 1);
animation: qp-panel-in 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
/* Response area entrance */