- "text": " Panels can be configured with minimum/maximum allowed sizes. Size can be specified using the following CSS units: Pixels Percentages Font sizes (em, rem) Viewport sizes (vh, vw) For example, the left panel below only allows itself to be resized between 10v0-200 pixels. <Group>\n <Panel minSize={100} maxSize={200}>left</Panel>\n <Separator />\n <Panel>right</Panel>\n</Group> As another example, this panel group will not allow any individual panel to be smaller than 10% of the group's width. <Group>\n <Panel minSize=\"10%\">left</Panel>\n <Separator />\n <Panel minSize=\"10%\">middle</Panel>\n <Separator />\n <Panel minSize=\"10%\">right</Panel>\n</Group> When specifying sizes, remember: Numbers are evaluated as pixels. Strings are evaluated as percentages (0..100%) unless otherwise specified. You can always include the unit, even for pixels (e.g. minSize=\"100px\") or percentages (e.g. minSize=\"10%\") ",
0 commit comments