feat: add skeleton

This commit is contained in:
Henry Li
2026-02-02 09:05:33 +08:00
parent a0a3a3fc02
commit 54277b9d9e
2 changed files with 90 additions and 3 deletions

View File

@@ -92,6 +92,18 @@
transform: translateY(-8px);
}
}
--animate-skeleton-entrance: skeleton-entrance 0.35s ease-out forwards;
@keyframes skeleton-entrance {
0% {
opacity: 0;
transform: scaleX(0);
}
100% {
opacity: 1;
transform: scaleX(1);
}
}
}
@theme inline {