From c2c14f1ca04c91b1d02623af1dd61b3b65c6a659 Mon Sep 17 00:00:00 2001 From: Jean-Marc Millet Date: Tue, 2 Apr 2024 17:19:48 +0200 Subject: [PATCH] ensure the summary height will be at 6rem by changing height with min-height --- src/lib/components/layout/v2/AppContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/layout/v2/AppContainer.tsx b/src/lib/components/layout/v2/AppContainer.tsx index 1af169102f..18c33ccb3e 100644 --- a/src/lib/components/layout/v2/AppContainer.tsx +++ b/src/lib/components/layout/v2/AppContainer.tsx @@ -53,7 +53,7 @@ const OverallSummaryContainer = styled.div<{ background?: ThemeColors; }>` background: ${(props) => props.theme[props.background || 'backgroundLevel2']}; - height: 6rem; + min-height: 6rem; padding: ${({ noPadding }) => (noPadding ? '0' : '0 1rem')}; margin-bottom: ${({ noBottomMargin }) => noBottomMargin ? '0' : sectionDistance};