Skip to content

Commit

Permalink
reduce minHeight of ContentContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
roslynwythe committed Nov 20, 2024
1 parent 5b26664 commit c44e6f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Layout/ContentContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const useStyles = createUseStyles({
flex: "1",
display: "flex",
flexDirection: "row",
minHeight: "calc(100vh - 103px - 48px)"
minHeight: "calc(100vh - 103px)"
},
content: {
boxSizing: "border-box",
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Layout/ContentContainerNoSidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const useStyles = createUseStyles({
flexDirection: "column",
justifyContent: "flex-start",
alignItems: "center",
minHeight: "calc(100vh - 103px - 48px)",
minHeight: "calc(100vh - 103px)",
margin: "auto",
width: "100%"
}
Expand Down

0 comments on commit c44e6f4

Please sign in to comment.