Skip to content

Commit

Permalink
website: fixed home page responsive bug at 751px
Browse files Browse the repository at this point in the history
  • Loading branch information
rclabo committed Mar 23, 2022
1 parent b83d07c commit d39b92b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions websites/site/lucenetemplate/styles/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,14 @@ pre.clean {
margin: 0 0 10px;
margin-bottom: 2rem;
}

/* hack for issue with padding disappearing in middle 2 sizes on home page */
@media screen and (max-width: 1200px) {
#intro .container {
margin-top: 80px;
}
}
@media screen and (max-width: 750px) {
@media screen and (max-width: 768px) {
#intro {
margin-top: 0px;
}
Expand All @@ -156,7 +157,7 @@ pre.clean {
padding-top: 65px;
}
}
@media screen and (max-width: 750px) {
@media screen and (max-width: 768px) {
div.body-content, div.contribution {
margin-top: 0px;
}
Expand Down

0 comments on commit d39b92b

Please sign in to comment.