From 73d505ac7e4399b40a7b495cde044b93f02fa6ef Mon Sep 17 00:00:00 2001 From: Tim Bendt Date: Mon, 1 Jun 2026 22:56:54 -0400 Subject: [PATCH] fix(ui): cap workspace browser at 36% max width The empty-state workspace shell (used on index and search pages) was using a 50/50 grid split. When the miller-browser only shows 1-2 columns the left side looks too wide. Change to a 36/64 split so the browser column maxes out at 36% while keeping its 300px minimum. --- apps/server/internal/httpserver/static/site.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/server/internal/httpserver/static/site.css b/apps/server/internal/httpserver/static/site.css index 25f3d86..155e67e 100644 --- a/apps/server/internal/httpserver/static/site.css +++ b/apps/server/internal/httpserver/static/site.css @@ -552,9 +552,9 @@ code { grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr); } -/* Empty state: more balanced 50/50 feel */ +/* Empty state: browser capped at 36% max */ .workspace-shell--empty { - grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr); + grid-template-columns: minmax(300px, 0.5625fr) minmax(300px, 1fr); } /* Miller browser - flex layout so all columns are visible as vertical slices */