This commit is contained in:
2026-02-10 17:27:08 +08:00
parent bbe7d882c0
commit bbb32017bb
3 changed files with 47 additions and 17 deletions

View File

@@ -29,6 +29,22 @@ body,
transform: rotate(360deg);
}
}
@keyframes opacity-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes z-index-10to-1 {
0% {
z-index: 10;
}
100% {
z-index: -1;
}
}
.flex {
display: flex;
}