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
1 changed files with 4 additions and 4 deletions

View File

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