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. (#64844)

Co-authored-by: jorgefilipecosta <jorgefilipecosta@git.wordpress.org>
Co-authored-by: jameskoster <jameskoster@git.wordpress.org>
Co-authored-by: t-hamano <wildworks@git.wordpress.org>
  • Loading branch information
4 people authored Aug 29, 2024
1 parent aa2e342 commit 6986b13
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 6986b13

Please sign in to comment.