no message

This commit is contained in:
A1300399510 2024-12-27 14:58:23 +08:00
parent b8012137e5
commit adbd17433e
2 changed files with 14 additions and 28 deletions

View File

@ -343,20 +343,6 @@
display: grid; display: grid;
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
gap: 10px; 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;
} }
.recruit .list .item { .recruit .list .item {
width: 565px; width: 565px;

View File

@ -384,21 +384,21 @@
display: grid; display: grid;
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
gap: 10px; gap: 10px;
opacity: 0; // opacity: 0;
transition: all 0.3s; // transition: all 0.3s;
animation: listShow 0.3s forwards; // animation: listShow 0.3s forwards;
@keyframes listShow { // @keyframes listShow {
0% { // 0% {
opacity: 0; // opacity: 0;
} // }
100% { // 100% {
opacity: 1; // opacity: 1;
} // }
} // }
&.active { // &.active {
opacity: 1; // opacity: 1;
} // }
} }
.item { .item {
width: 565px; width: 565px;