From 78be4ee67941ddc8a97a41d22d514a85fd3b4a8e Mon Sep 17 00:00:00 2001 From: Jonathan Peris Date: Wed, 24 Jun 2026 21:06:28 +0000 Subject: [PATCH] fix: balance Workbench pinned grid --- src/styles/globals.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index 95d83bf..6dc6f69 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -691,10 +691,14 @@ body::after { gap: 1rem; } .workbench-grid > .reveal:nth-child(1), -.workbench-grid > .reveal:nth-child(4) { grid-column: span 3; } -.workbench-grid > .reveal:nth-child(2), +.workbench-grid > .reveal:nth-child(2) { grid-column: span 3; } .workbench-grid > .reveal:nth-child(3), .workbench-grid > .reveal:nth-child(5) { grid-column: span 2; } +.workbench-grid > .reveal:nth-child(4), +.workbench-grid > .reveal:nth-child(6) { grid-column: span 4; } +.workbench-grid > .reveal:only-child, +.workbench-grid > .reveal:nth-child(3):last-child, +.workbench-grid > .reveal:nth-child(5):last-child { grid-column: 1 / -1; } .workbench-card { min-height: 100%; border: 1px solid var(--color-border);