fix(MisskeyIO#956): MSKY-77 (MisskeyIO#957)

This commit is contained in:
あわわわとーにゅ 2025-03-31 12:38:51 +09:00 committed by GitHub
parent e888ee414b
commit cf1151aa28
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 12 deletions

View file

@ -212,21 +212,10 @@ export default defineComponent({
} }
} }
@keyframes spin-shrink {
0% {
transform: rotate(0deg) scale(1);
opacity: 1;
}
100% {
transform: rotate(2160deg) scale(0);
opacity: 0;
}
}
.april-fool { .april-fool {
&:global > .list-enter-from, &:global > .list-enter-from,
&:global > .list-leave-to { &:global > .list-leave-to {
animation: components-MkDateSeparatedList-spin-shrink 3s ease-in forwards; animation: global-spin-shrink 3s ease-in forwards;
} }
} }

View file

@ -510,6 +510,17 @@ html[data-color-mode=dark] ._woodenFrame {
} }
} }
@keyframes global-spin-shrink {
0% {
transform: rotate(0deg) scale(1);
opacity: 1;
}
100% {
transform: rotate(2160deg) scale(0);
opacity: 0;
}
}
._anime_bounce { ._anime_bounce {
will-change: transform; will-change: transform;
animation: global-bounce ease 0.7s; animation: global-bounce ease 0.7s;