Hi All,
I have a nav-view which is loaded with a template. The template has ng-repeat. The div cards generated through the ng-repeat are filling the full screen width - it only takes the size of the content within the div, whereas div cards generated normally are easily filling the full screen. Please help.
Edited the post as I had mentioned scaling as an issue, which isn’t true - as scaling browser window makes the lists scale correctly.
<div class="row">
<div class="col">
<div class="card">
<div class="item item-text-wrap">
APP1
</div>
</div>
</div>
<!-- 2 more like the above columns-->
</div><!--End of row div -->
<!-- 1 more row like the above code-->
<div ng-repeat="val in items">
<div class="row">
<div ng-repeat="val in items">
<div class="col">
<div class="card">
<div class="item item-text-wrap">
APP{{val}}
</div>
</div>
</div>
</div><!--End of ng-repeat div -->
</div><!--End of row div -->
</div><!--End of ng-repeat div -->