Skip to content
Merged
Show file tree
Hide file tree
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: 5 additions & 0 deletions .changeset/fix-pagelayout-overflow.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

Fix PageLayout horizontal overflow by adding width constraint to ContentWrapper
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/react/src/PageLayout/PageLayout.module.css
Original file line numberDiff line numberDiff line change
Expand Up@@ -346,6 +346,7 @@

.ContentWrapper {
display: flex;
width: 100%;

/* Hack to prevent overflowing content from pushing the pane region to the next line */
min-width: 1px;
Expand Down
Loading