Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/react/src/PageLayout/PageLayout.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,9 @@
flex-grow: 1;
flex-shrink: 1;

/* Ensures content always remains within its container */
width: 100%;

&:where([data-is-hidden='true']) {
display: none;
}
Expand Down Expand Up @@ -595,7 +598,7 @@
width: 100%;

@media screen and (min-width: 768px) {
/*
/*
* --pane-max-width is set by JS on mount and updated on resize (debounced).
* JS calculates viewport - margin to avoid scrollbar discrepancy with 100vw.
*/
Expand Down
Loading