From 9c1197c0b2e0b12802db41d21e65ff35a04cbd6f Mon Sep 17 00:00:00 2001 From: Baptiste Devessier Date: Thu, 11 Dec 2025 14:32:26 +0100 Subject: [PATCH] fix: constrain side column width (#16498) ## Before https://github.com/user-attachments/assets/18bfd8b0-7636-40b2-aa64-24c84ab74009 ## After CleanShot 2025-12-11 at 14 13
23@2x --- .../src/modules/page-layout/components/PageLayoutLeftPanel.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/page-layout/components/PageLayoutLeftPanel.tsx b/packages/twenty-front/src/modules/page-layout/components/PageLayoutLeftPanel.tsx index 07245421c0..9c4e9888dc 100644 --- a/packages/twenty-front/src/modules/page-layout/components/PageLayoutLeftPanel.tsx +++ b/packages/twenty-front/src/modules/page-layout/components/PageLayoutLeftPanel.tsx @@ -18,6 +18,7 @@ const StyledContainer = styled.div` box-sizing: border-box; display: grid; grid-template-rows: auto 1fr; + grid-template-columns: minmax(0, 1fr); height: 100%; `;