This commit is contained in:
2025-12-11 02:30:28 +01:00
parent fae838e2a4
commit 29f00a55ad
16 changed files with 635 additions and 0 deletions

20
tailwind.css git.filemode.normal_file
View File

@@ -0,0 +1,20 @@
@import "tailwindcss";
@layer "base" {
.skeleton {
border-radius: 0.375rem;
animation: skeleton-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
background-color: #262626;
}
@keyframes skeleton-pulse {
0%,
100% {
opacity: 1;
}
61.8% {
opacity: 0.5;
}
}
}