feat: stop chat

This commit is contained in:
archer
2023-04-25 21:06:04 +08:00
parent fb08f61eb5
commit 8767c576be
7 changed files with 59 additions and 53 deletions

View File

@@ -0,0 +1,11 @@
.stopIcon {
animation: zoomStopIcon 0.4s infinite alternate;
}
@keyframes zoomStopIcon {
0% {
transform: scale(0.8);
}
100% {
transform: scale(1.2);
}
}