A Clarity/Angular newbie question...
I am following the layout model described in the Clarity docs, except that I want to introduce a router-outlet at the .content-container level, like:
<div class="main-container">
<div class="alert alert-app-level">...</div>
<header class="header header-6">...</header>
<nav class="subnav">...</nav>
<div class="content-container">
<router-outlet></router-outlet>
</div>
</div>
And then below that I have a number of components that one of two layout formats...
Layout #1 - with side nav
<div class="content-container">
<nav class="sidenav" height="100%" style="background: chartreuse">
</nav>
<div class="content-area" height="100%" width="100%" style="background:brown">
<router-outlet></router-outlet>
</div>
</div>
Layout #2 - no side nav
<div class="content-container">
<div class="content-area">
<router-outlet></router-outlet>
</div>
</div>
I've noticed that the components injected into the content-container now longer fill all the available vertical space.
How can I set the nav and .content-area components so that they take all up the available vertical and horizontal space?