This commit is contained in:
xingyu4j
2025-10-09 11:19:32 +08:00
30 changed files with 175 additions and 45 deletions

View File

@@ -85,3 +85,17 @@
.z-popup {
z-index: var(--popup-z-index);
}
@keyframes shrink {
0% {
transform: scale(1);
}
50% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
}