Skip to content

Commit

Permalink
fix(homepage): responsiveness bug (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgolden committed Jun 17, 2020
1 parent 163d634 commit 18c0b31
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/home-page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ img.play-button {
}
}

@media screen and (max-width:xzF 480px) {
@media screen and (max-width: 480px) {
.hero-container {
margin-top: 24px;
}
Expand All @@ -530,6 +530,12 @@ img.play-button {
}
}

@media screen and (max-width: 375px) {
.homepage-hero-heading {
font-size: 28px;
}
}

// ==============================================================
// Dark mode
// ==============================================================
Expand Down

0 comments on commit 18c0b31

Please sign in to comment.