Skip to content

Commit

Permalink
chore(ui): skeleton background color
Browse files Browse the repository at this point in the history
  • Loading branch information
duyet committed Jun 3, 2024
1 parent 0750c87 commit 52d74c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/skeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ export function ChartSkeleton() {
return (
<div className="flex flex-col gap-4 p-5">
<div className="grid grid-cols-2 gap-2">
<Skeleton className="h-12 rounded-md" />
<Skeleton className="h-12 rounded-md" />
<Skeleton className="h-12 rounded-md bg-slate-200" />
<Skeleton className="h-12 rounded-md bg-slate-200" />
</div>
<div className="grid grid-cols-2 gap-2">
<Skeleton className="h-4 w-16" />
<Skeleton className="h-4 w-16" />
<Skeleton className="h-4 w-16 bg-slate-200" />
<Skeleton className="h-4 w-16 bg-slate-200" />
</div>
</div>
)
Expand Down

0 comments on commit 52d74c8

Please sign in to comment.