Skip to content

Commit

Permalink
fix container issue (#1934)
Browse files Browse the repository at this point in the history
  • Loading branch information
corlard3y authored Oct 28, 2024
1 parent fcfb119 commit 899f0d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,6 @@ const ParentContainer = styled.div`
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
// background: ${(props) => props.bg};
margin: ${(props) => props.headerHeight}px 0px 0px 0px;
min-height: calc(100dvh - ${(props) => props.headerHeight}px);
max-height: calc(100dvh - ${(props) => props.headerHeight}px);
Expand Down
4 changes: 2 additions & 2 deletions src/structure/MasterInterfacePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ const Container = styled.div<ModeProp>`
display: flex;
flex: 1;
flex-direction: column;
min-height: calc(100dvh - ${GLOBALS.CONSTANTS.HEADER_HEIGHT}px - ${(props) => props.theme.interfaceTopPadding});
max-height: calc(100dvh - ${GLOBALS.CONSTANTS.HEADER_HEIGHT}px - ${(props) => props.theme.interfaceTopPadding});
// min-height: calc(100dvh - ${GLOBALS.CONSTANTS.HEADER_HEIGHT}px);
// max-height: calc(100dvh - ${GLOBALS.CONSTANTS.HEADER_HEIGHT}px);
/* Padding to be handled by Modules individually */
/* padding: ${(props) => props.theme.interfaceTopPadding} 20px 20px 20px; */
align-items: stretch;
Expand Down

0 comments on commit 899f0d4

Please sign in to comment.