Currently, I am working with an Angular module that is referenced in the index.html file. The template file associated with this module is outlined below:
<div id="{{$ctrl.link}}" class="container-fluid">
<div layout="row">
<div flex layout="row" layout-fill style="height:100%;">
<div flex="40">
<img src="{{$ctrl.image}}" height="600px"></img>
</div>
<div flex="40">
Other Flex part
</div>
<div flex="20">
</div>
</div>
</div>
</div>
The issue I am currently facing is that the two divs are supposed to stack up in rows as follows: div | div | div. However, instead of stacking up horizontally, the divs are just stacking up vertically.