My page has two divs: one is on the left side of the page and contains a nav, which is resizable horizontally via JavaScript. The other div is on the right side of the page and contains the page's content (the content can contain many items, including items that are themselves flexboxes).
The problem is the left side panel is only allowing me to resize up to so far, then it stops as if it hit a wall. It is the flex items on the right that is preventing me from expanding further.
http://codepen.io/anon/pen/GWWLRK
How can I get the left to resize as far as the user desires?
Thank you.
<div class="page">
<div class="container">
<div class="nav">
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
<div class="nav-resize-bar"></div>
</div>
<div class="right">
page's content goes over here. it could contain anything, including flexible items:
<div class="flex-parent">
<div>Drag the black bar to see that you can only make the yellow section so big - it then gets stopped by these flex items.</div>
<div>efgh efgh efgh</div>
<div>ijkl ijkl ijkl ijkl</div>
<div>mnop mnop</div>
</div>
</div>
</div>
</div>