Skip to content

Commit

Permalink
Fix the title overflowing on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Nov 21, 2014
1 parent fcaec6b commit 4bab926
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/styles/home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@
border-bottom: 5px solid $gray-border;
padding-bottom: 40px;

h1 { font-size: 50px; }
h1 {
font-size: 50px;
@media only screen and (max-width: 370px) {
font-size: 40px;
}
}

.links a:not(:first-child) {
margin: 0 20px;
Expand Down

0 comments on commit 4bab926

Please sign in to comment.