feat(analytics): refine timeline visualization and add print support

This commit is contained in:
2026-02-17 21:17:11 -05:00
parent 568d408587
commit 72971a4b49
82 changed files with 6670 additions and 2448 deletions

View File

@@ -127,10 +127,12 @@ export function EntityForm<T extends FieldValues = FieldValues>({
<div
className={cn(
"grid gap-8 w-full",
// If sidebar exists, use 2-column layout. If not, use full width (max-w-7xl centered).
// If sidebar exists, use 2-column layout. If not, use full width.
sidebar && layout === "default"
? "grid-cols-1 lg:grid-cols-3"
: "grid-cols-1 max-w-7xl mx-auto",
: layout === "full-width"
? "grid-cols-1 w-full"
: "grid-cols-1 max-w-7xl mx-auto",
)}
>
{/* Main Form */}