Skip to content

Commit

Permalink
correct minHeight of contentContainer to allow for changes in font size
Browse files Browse the repository at this point in the history
  • Loading branch information
roslynwythe committed Nov 20, 2024
1 parent c44e6f4 commit 25536fa
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)"
minHeight: "calc(100vh - 67px - 5em)"
},
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)",
minHeight: "calc(100vh - 67px - 5em)",
margin: "auto",
width: "100%"
}
Expand Down

0 comments on commit 25536fa

Please sign in to comment.