Skip to content

Commit

Permalink
ensure the summary height will be at 6rem by changing height with min…
Browse files Browse the repository at this point in the history
…-height
  • Loading branch information
JeanMarcMilletScality committed Apr 2, 2024
1 parent 7c29a8c commit c2c14f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/layout/v2/AppContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit c2c14f1

Please sign in to comment.