From b8c01bcf5a6259da4072c299db877ccbe6d0cd37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:28:07 +0100 Subject: [PATCH] Fix empty state not being centered (#8650) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix empty state not being centered Before: Capture d’écran 2024-11-21 à 15 50 56 After: Capture d’écran 2024-11-21 à 15 50 41 --- .../modules/ui/utilities/scroll/components/ScrollWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx b/packages/twenty-front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx index 969a24a6f..d39ef62d1 100644 --- a/packages/twenty-front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx +++ b/packages/twenty-front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx @@ -24,7 +24,7 @@ const StyledScrollWrapper = styled.div` `; const StyledInnerContainer = styled.div` - flex: 1; + height: 100%; `; export type ScrollWrapperProps = {