diff --git a/src/components/Pane.jsx b/src/components/Pane.jsx index 57c6dc5..6a16155 100644 --- a/src/components/Pane.jsx +++ b/src/components/Pane.jsx @@ -5,7 +5,7 @@ function Pane(props) { const size = props.size || 0; const unit = props.percentage ? '%' : 'px'; let classes = 'layout-pane'; - const style = {}; + const style = {'display': 'flex'}; if (!props.primary) { if (props.vertical) { style.height = `${size}${unit}`;