Skip to content

Commit

Permalink
Merge pull request #193 from makermelissa/main
Browse files Browse the repository at this point in the history
Fix duplicate headings when fractional window sizes used
  • Loading branch information
tannewt committed May 24, 2024
2 parents 26afa40 + 35e1dda commit c625fa2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions sass/layout/_header_mobile.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#mobile-header {
display: none;
background-color: #333;

.header-contents {
Expand Down Expand Up @@ -32,6 +33,7 @@
}

#mobile-editor-bar {
display: none;
padding: 0 10px;

#mobile-menu {
Expand Down Expand Up @@ -96,12 +98,12 @@
}
}

@media (min-width: $screen-sm) {
@media (max-width: $screen-xs-max) {
#mobile-header {
display: none !important;
display: block !important;
}

#mobile-editor-bar {
display: none !important;
display: block !important;
}
}

0 comments on commit c625fa2

Please sign in to comment.