Skip to content

Commit

Permalink
#264: Fix menu width for smaller screen size
Browse files Browse the repository at this point in the history
  • Loading branch information
ktturner committed Jun 22, 2020
1 parent 9893d72 commit adb4611
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion assets/js/elements/site-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,17 @@ class SiteHeader extends LitElement {
max-width: 380px;
}
}
@media (max-width: 950px){
@media (max-width: 1000px){
#navigation {
width: 40%;
}
}
@media (max-width: 800px){
#navigation {
width: 45%;
}
}
@media (max-width: 800px){
#menu-button {
display: flex;
background: none;
Expand Down

0 comments on commit adb4611

Please sign in to comment.