Skip to content

Commit

Permalink
fix(header): show nav overflow triggers until correct breakpoint
Browse files Browse the repository at this point in the history
The nav links are hidden until the large breakpoint, so the overflow
triggers should be shown until then.

This is a backport of 4593d65 to 12.x.
  • Loading branch information
kevinbuhmann committed Oct 6, 2022
1 parent 6e85547 commit 5de1432
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -197,7 +197,7 @@
}
}

@media screen and (max-width: map-get($clr-grid-breakpoints, md)) {
@media screen and (max-width: map-get($clr-grid-breakpoints, lg)) {
.main-container {
.header-hamburger-trigger,
.header-overflow-trigger {
Expand Down

0 comments on commit 5de1432

Please sign in to comment.