Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove nested breakpoint in fullscreen-mode CSS (WordPress#21496)
A `break-medium` mixin in `/packages/interface/src/components/fullscreen-mode/style.scss` is nested within the previous `break-medium`. So it currently compiles with extra media queries and an unused value of 46px. ``` @media (min-width:782px){body.js.is-fullscreen-mode{margin-top:-46px;height:calc(100% + 46px)}}@media (min-width:782px) and (min-width:782px){body.js.is-fullscreen-mode{margin-top:-32px;height:calc(100% + 32px)}}@media (min-width:782px){ ```
- Loading branch information