Skip to content

Commit

Permalink
Actually set padding and h3 size for mobile
Browse files Browse the repository at this point in the history
Be more careful with media queries: desktops have min-width 320px for
sure so query for max-width 1024px instead.
  • Loading branch information
plfiorini committed Feb 18, 2017
1 parent dd4ff4e commit f79ab50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
}

@media screen and (min-width: 320px) {
@media screen and (max-width: 1024px) {
.liri-laptop {
padding-top: 20px;
}
Expand Down

0 comments on commit f79ab50

Please sign in to comment.