Merge pull request #180 from the-programmers-hangout/fix-overly-large-mobile-title

fix: make site title much smaller mobile/tablet
This commit is contained in:
Jean-Philippe Sirois
2019-11-21 04:59:04 -05:00
committed by GitHub
+8
View File
@@ -50,6 +50,14 @@ export const Title = styled.h1`
font-size: 32px;
}
}
@media screen and (max-width: 991px) {
font-size: 42px;
}
@media screen and (max-width: 767px) {
font-size: 32px;
}
`
export const FadedBottomWave = styled.div`