no message

This commit is contained in:
A1300399510 2024-12-27 14:57:12 +08:00
parent 6087d86711
commit b8012137e5
2 changed files with 19 additions and 0 deletions

View File

@ -345,6 +345,15 @@
gap: 10px;
opacity: 0;
transition: all 0.3s;
animation: listShow 0.3s forwards;
}
@keyframes listShow {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.recruit .list .list-item.active {
opacity: 1;

View File

@ -386,6 +386,16 @@
gap: 10px;
opacity: 0;
transition: all 0.3s;
animation: listShow 0.3s forwards;
@keyframes listShow {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
&.active {
opacity: 1;
}