Skip to content

Commit

Permalink
Merge pull request #5167 from marmelab/fix-menu-small-screen
Browse files Browse the repository at this point in the history
Fix clicking on the documentation link on small screens
  • Loading branch information
Maxime Richard authored Aug 18, 2020
2 parents 25e3634 + c6381f2 commit 770e9dd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ header {

#lego {
position: absolute;
z-index: 1;
z-index: 0;
bottom: 120px;
left: 0;
height: 70%;
height: 60%;
}

#logo {
Expand Down Expand Up @@ -632,3 +632,9 @@ nav {
height: calc(100vh - 120px);
}
}

@media (max-width: 1280px) {
#lego {
display: none;
}
}

0 comments on commit 770e9dd

Please sign in to comment.