Steps to replicate the issue (include links if applicable):
- Shrink/grow your browser (Firefox is what I'm using) to exactly 1120px wide
What happens?:
Things show up in the header that should be in the sidenav OR should be hidden
I suspect this is from a combination of using max-width and min-width in media queries. Both are exclusive, so if you have (max-width: 1120px) { hide the thing } and (min-width: 1120px) { format the thing }, then the thing will neither be formatted nor hidden at 1120px wide.
My recommended best practice is to pick one (either min or max) and NEVER use the other.
I've attached three screenshots: one of the bug, one with my browser zoomed in slightly, and one with my browser zoomed out slightly.
Other information (browser name/version, screenshots, etc.):
Firefox
Acceptance criteria for done
Assuming that this affects not only the 1119 to 1120px gap, the solution should care about all max-width-breakpoint - 1px tokens.




