Skip to content

Commit

Permalink
styles(landing-page): fix container width in large screens (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsahitya authored May 13, 2024
1 parent 6957c33 commit 9a6b518
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
6 changes: 6 additions & 0 deletions src/components/HomepageFeatures/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,9 @@
max-width: 1440px;
}
}

@media (min-width: 1440px) {
.container {
max-width: 1440px;
}
}
22 changes: 14 additions & 8 deletions src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@
.buttons .getStartedButton {
flex-direction: row;
font-size: 1.125rem;
}

&:after {
content: 'east';
font-family: Material Symbols Outlined;
margin-left: 0.5rem;
pointer-events: none;
position: relative;
top: 1px;
}
.buttons .getStartedButton:after {
content: 'east';
font-family: Material Symbols Outlined;
margin-left: 0.5rem;
pointer-events: none;
position: relative;
top: 1px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
Expand Down Expand Up @@ -143,3 +143,9 @@
margin-top: 2.5rem;
}
}

@media (min-width: 1440px) {
.container {
max-width: 1440px;
}
}

0 comments on commit 9a6b518

Please sign in to comment.