FIX: less generic animation names (#1243)
This commit is contained in:
parent
8b573fe743
commit
32da999144
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue