mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-03-24 03:37:51 -04:00
feat(analytics): refine timeline visualization and add print support
This commit is contained in:
@@ -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 */}
|
||||
|
||||
Reference in New Issue
Block a user