From 5511bc37a2f01e5edfcfdc88a32ccae4f465553f Mon Sep 17 00:00:00 2001 From: Tyler Jones Date: Thu, 29 Jan 2026 08:38:29 -0500 Subject: [PATCH] Set `.ContentWrapper` to 100% width --- packages/react/src/PageLayout/PageLayout.module.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/react/src/PageLayout/PageLayout.module.css b/packages/react/src/PageLayout/PageLayout.module.css index c9533a179f4..7f922e52f33 100644 --- a/packages/react/src/PageLayout/PageLayout.module.css +++ b/packages/react/src/PageLayout/PageLayout.module.css @@ -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; } @@ -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. */