Skip to content

Commit

Permalink
Fix: Impossible to see pagination on viewports between small and medi…
Browse files Browse the repository at this point in the history
…um. (WordPress#64844)

Co-authored-by: jorgefilipecosta <[email protected]>
Co-authored-by: jameskoster <[email protected]>
Co-authored-by: t-hamano <[email protected]>
  • Loading branch information
4 people authored and bph committed Aug 31, 2024
1 parent 9d3a767 commit 15dea79
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/edit-site/src/components/page/style.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
.edit-site-page {
color: $gray-800;
background: $white;
height: 100%;
height: calc(100% - #{$header-height});
/* stylelint-disable-next-line property-no-unknown -- '@container' not globally permitted */
container: edit-site-page / inline-size;
transition: width ease-out 0.2s;
@include reduce-motion("transition");

@include break-medium() {
height: 100%;
}
}

.edit-site-page-header {
Expand Down

0 comments on commit 15dea79

Please sign in to comment.