We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2806dac commit 2ff31e7Copy full SHA for 2ff31e7
.changeset/twenty-turtles-leave.md
@@ -0,0 +1,5 @@
1
+---
2
+'@shopify/polaris': patch
3
4
+
5
+Fixed max width bug in Collapsible
polaris-react/src/components/Collapsible/Collapsible.tsx
@@ -81,7 +81,7 @@ export function Collapsible({
81
overflow: isFullyOpen ? 'visible' : 'hidden',
82
}
83
: {
84
- maxWidth: isFullyOpen ? 'auto' : `${size}px`,
+ maxWidth: isFullyOpen ? 'none' : `${size}px`,
85
86
}),
87
};
0 commit comments