FIX: less generic animation names (#1243)

This commit is contained in:
Kris 2025-04-02 11:28:10 -04:00 committed by GitHub
parent 8b573fe743
commit 32da999144
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,11 @@
@keyframes remove { @keyframes artifact-remove {
to { to {
height: 0; height: 0;
overflow: hidden; overflow: hidden;
} }
} }
@keyframes fade { @keyframes artifact-fade {
to { to {
opacity: 0; opacity: 0;
} }
@ -92,8 +92,8 @@ html.ai-artifact-expanded {
display: block; display: block;
position: absolute; position: absolute;
animation: animation:
fade 0.75s forwards, artifact-fade 0.75s forwards,
remove 1s forwards; artifact-remove 1s forwards;
animation-delay: 4s; animation-delay: 4s;
background-color: var(--primary); background-color: var(--primary);
opacity: 0.9; opacity: 0.9;