Skip to content

Commit

Permalink
Fix footer gap issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincharles committed Mar 1, 2023
1 parent fafced0 commit 597b2d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Tools/_framework/Pages/CommunityPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const Main = styled.main`
margin-top: 40px;
/* padding: 20px; */
overflow-y: scroll;
height: calc(100vh - 40px);
height: 100vh;
margin: 0;
`;

Expand Down
2 changes: 1 addition & 1 deletion src/Tools/_framework/Pages/HomePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ const Main = styled.main`
margin-top: 40px;
/* padding: 20px; */
overflow-y: scroll;
height: calc(100vh - 40px);
height: 100vh;
margin: 0;
`;

Expand Down
2 changes: 1 addition & 1 deletion src/Tools/_framework/Pages/ProfilePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const Main = styled.main`
margin-top: 40px;
/* padding: 20px; */
overflow-y: scroll;
height: calc(100vh - 40px);
height: 100vh;
margin: 0;
`;

Expand Down

0 comments on commit 597b2d6

Please sign in to comment.