Skip to content

Commit

Permalink
Fix sizes on small & large screens (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashachabin authored Sep 28, 2023
1 parent a52d8b1 commit b9f47d7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion client/components/MainPage/MainPage.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
width: 100%;
max-width: 1100px;
margin: auto;
padding: 8vmax 6vmax 4vmax;
padding: 32px 24px 64px;
}

.MainPageLogo {
Expand Down Expand Up @@ -132,6 +132,8 @@
}

.MainPageInner {
width: 80%;
max-width: 1600px;
padding: 3.6em .2em;
}
}
Expand All @@ -155,3 +157,10 @@
}
}


@media screen and (min-width: 1920px) {
.MainPageInner {
max-width: 2000px;
}
}

0 comments on commit b9f47d7

Please sign in to comment.