#591 - sites [wip]

This commit is contained in:
Saeed Vaziry
2025-05-25 22:17:19 +02:00
parent ff11fb44e0
commit f5fdbae4ac
77 changed files with 2156 additions and 414 deletions

View File

@ -11,3 +11,18 @@
[data-slot='scroll-area-viewport'] div:first-child {
@apply h-full;
}
@layer utilities {
@keyframes indeterminate {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(200%);
}
}
.animate-loading-bar {
animation: indeterminate 1s linear infinite;
}
}