fix(web): вернуть графики дашборда в один ряд на десктопе
Docker / build (push) Failing after 23s

ChartsGrid снова lg:grid-cols-2 — Платежи и Расходы рядом на широких экранах.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Denozordec
2026-07-18 01:17:35 +07:00
co-authored by Cursor
parent da97abce41
commit f8e13a4a72
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -460,7 +460,7 @@ export function MonthlyTrendChart({
}
export function ChartsGrid({ children }: { children: ReactNode }) {
return <div className="grid w-full gap-4">{children}</div>
return <div className="grid w-full gap-4 lg:grid-cols-2">{children}</div>
}
export function ProjectExpenseChart({
@@ -32,7 +32,7 @@ function OpsDashboardSkeleton() {
<Skeleton className="mt-2 h-4 w-80 max-w-full" />
</header>
<KpiStatGrid cards={[]} isLoading skeletonCount={4} />
<div className="grid w-full gap-2">
<div className="grid w-full gap-2 lg:grid-cols-2">
<Skeleton className="h-64 w-full rounded-xl" />
<Skeleton className="h-64 w-full rounded-xl" />
</div>