Skip to content

Commit

Permalink
Fix issue w/ smushed nav on medium sized screens close #199
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-shehane committed Nov 1, 2017
1 parent 28bd178 commit bd2e60c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions themes/cypress/source/css/_partial/media_queries.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,20 @@
#article-toc {
display: block;
}

#lang-select-wrap {
display: none;
}
}

@media screen and(min-width: 1001px) {
#content-inner {
margin-left: $sidebar-width;
}

#lang-select-wrap {
display: inline-block;
}
}

@media screen and(max-width: 1000px) {
Expand Down Expand Up @@ -160,7 +168,6 @@
}
}
@media screen and(max-width: 769px) {

#content-wrap {
padding-top: 0;
}
Expand Down Expand Up @@ -270,13 +277,10 @@
text-align: center;
margin: 0 auto;
}


}
}

@media screen and(max-width: 620px) {

.media {
width: 100%;
padding-right: 0;
Expand Down

0 comments on commit bd2e60c

Please sign in to comment.