Skip to content

Commit

Permalink
Try to hide logo when screen under 480 px
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinamstutz committed Nov 23, 2021
1 parent c7359b2 commit 5366d1a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,13 @@ body {
white-space: nowrap;
}

@media screen and (max-width: 1023.5px) {
@media screen and (max-width: 480px) and (min-width: 320px) {
.navbar-item.logo {
display: none;
}
}

@media screen and (max-width: 1023.5px) and (min-width: 481px) {
.navbar-brand {
height: inherit;
}
Expand Down

0 comments on commit 5366d1a

Please sign in to comment.