Skip to content

Commit

Permalink
Fix: added a 1440px constraint on the wrapperScreen style of home.mod…
Browse files Browse the repository at this point in the history
…ule.css
  • Loading branch information
supreme2580 committed Feb 8, 2025
1 parent dc0a63a commit 5024c0b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions styles/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
position: relative;
margin-top: 12vh;
overflow: auto;
display: flex;
justify-content: center;
}

.wrapperScreen {
display: inline-flex;
flex-direction: column;
width: 100%;
max-width: 1440px;
margin: 0 auto;
justify-content: center;
height: calc(100% - 12vh);
}
Expand Down

0 comments on commit 5024c0b

Please sign in to comment.