From d2d3b21c90749de4eaae9ea3374dc937f5bff24d Mon Sep 17 00:00:00 2001 From: Mohammed Abdul Razak Wahab <60781022+mdrazak2001@users.noreply.github.com> Date: Wed, 12 Feb 2025 17:15:26 +0530 Subject: [PATCH] consistent background color in notes (#10097) fixes #10086 ![image](https://github.com/user-attachments/assets/c8233d63-9020-457f-9ce1-4c88d6dc2019) ![image](https://github.com/user-attachments/assets/3deeb644-eeb1-4073-9ee8-dd08745282f6) --------- Co-authored-by: ehconitin --- .../ui/layout/show-page/components/ShowPageSubContainer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx b/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx index e08946ee4..eaeb6986e 100644 --- a/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx +++ b/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx @@ -38,6 +38,7 @@ const StyledTabListContainer = styled.div<{ shouldDisplay: boolean }>` const StyledContentContainer = styled.div<{ isInRightDrawer: boolean }>` flex: 1; overflow-y: auto; + background: ${({ theme }) => theme.background.primary}; padding-bottom: ${({ theme, isInRightDrawer }) => isInRightDrawer ? theme.spacing(16) : 0}; `;