Recently, I began utilizing angular ui-layout to enable pane splitting within a user interface.
I am attempting to design a sidebar that features a blue element at the bottom.
Is there a way to manipulate the ui-layout directive to accomplish this? I experimented with using size
, but it only provides absolute sizing. I want the blue box to occupy a portion of space (displaying 100% of its content) while the element above it scrolls and takes up the remaining vertical area.
EDIT: included the HTML
<ui-layout options="{ flow: 'row' }">
<div ui-layout-container> top part </div>
<div ui-layout-container> blue box</div>
</ui-layout>