upd: dash loading style

This commit is contained in:
oiov
2024-08-01 20:54:34 +08:00
committed by GitHub
parent af95e53cdc
commit e397767744
+9 -2
View File
@@ -5,8 +5,15 @@ export default function DashboardLoading() {
return (
<>
<DashboardHeader heading="Dashboard" text="" />
<Skeleton className="h-[200px] w-full rounded-lg" />
<Skeleton className="h-[200px] w-full rounded-lg" />
<div className="flex flex-col gap-5">
<div className="grid grid-cols-1 gap-4 sm:grid-cols-3 lg:grid-cols-3">
<Skeleton className="h-32 w-full rounded-lg" />
<Skeleton className="h-32 w-full rounded-lg" />
<Skeleton className="h-32 w-full rounded-lg" />
</div>
<Skeleton className="h-[250px] w-full rounded-lg" />
<Skeleton className="h-[250px] w-full rounded-lg" />
</div>
</>
);
}