From 72fd087fbfa794f61f263b1d069f13cdb542df3d Mon Sep 17 00:00:00 2001 From: Jaanus Sellin Date: Thu, 21 Nov 2024 12:10:16 +0200 Subject: [PATCH] chore: make project status fit on 1080 height (#8818) ![image](https://github.com/user-attachments/assets/a51f50fc-b0b2-4657-94f2-8d095f59898d) --------- Co-authored-by: Thomas Heartman --- .../project/Project/ProjectStatus/ProjectStatusModal.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/component/project/Project/ProjectStatus/ProjectStatusModal.tsx b/frontend/src/component/project/Project/ProjectStatus/ProjectStatusModal.tsx index c55801df40..fd7499a08c 100644 --- a/frontend/src/component/project/Project/ProjectStatus/ProjectStatusModal.tsx +++ b/frontend/src/component/project/Project/ProjectStatus/ProjectStatusModal.tsx @@ -16,15 +16,15 @@ const ModalContentContainer = styled('section')(({ theme }) => ({ backgroundColor: theme.palette.background.default, display: 'flex', flexFlow: 'column', - gap: theme.spacing(4), + gap: theme.spacing(2), paddingInline: theme.spacing(4), - paddingBlock: theme.spacing(10), + paddingBlock: theme.spacing(3.75), })); const WidgetContainer = styled('div')(({ theme }) => ({ display: 'flex', flexDirection: 'column', - gap: theme.spacing(9), + gap: theme.spacing(4), })); const LifecycleHeaderRow = styled('div')(({ theme }) => ({