From 5d1c2a33480540375b70ef3e1199ca8afac22e3a Mon Sep 17 00:00:00 2001 From: Thomas des Francs Date: Wed, 26 Nov 2025 22:34:44 +0100 Subject: [PATCH] Let single notes take the full width (both side panel & desktop) (#16108) # Current behavior CleanShot 2025-11-26 at 19 10 32@2x CleanShot 2025-11-26 at 19 10
56@2x # Desired Behavior CleanShot 2025-11-26 at 19 11
32@2x CleanShot 2025-11-26 at 19 11
50@2x --- .../src/modules/activities/notes/components/NoteTile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/activities/notes/components/NoteTile.tsx b/packages/twenty-front/src/modules/activities/notes/components/NoteTile.tsx index 388c7399b3..af4ba2b0a4 100644 --- a/packages/twenty-front/src/modules/activities/notes/components/NoteTile.tsx +++ b/packages/twenty-front/src/modules/activities/notes/components/NoteTile.tsx @@ -17,7 +17,7 @@ const StyledCard = styled.div<{ isSingleNote: boolean }>` flex-direction: column; height: 300px; justify-content: space-between; - max-width: ${({ isSingleNote }) => (isSingleNote ? '300px' : 'unset')}; + width: 100%; `; const StyledCardDetailsContainer = styled.div`