Added financial report

This commit is contained in:
Roba Boru
2026-08-12 11:24:12 +03:00
parent e2e1685b62
commit bdcdb4f047
12 changed files with 1170 additions and 232 deletions

View File

@@ -68,6 +68,24 @@
.animate-fade-up {
animation: fade-up 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes shimmer {
from { background-position: -300px 0; }
to { background-position: 300px 0; }
}
.skeleton {
border-radius: 0.5rem;
background-color: hsl(var(--muted));
background-image: linear-gradient(
90deg,
hsl(var(--muted)) 0%,
hsl(var(--muted-foreground) / 0.18) 50%,
hsl(var(--muted)) 100%
);
background-size: 600px 100%;
background-repeat: no-repeat;
animation: shimmer 1.5s ease-in-out infinite;
}
}
@layer components {