I'm using Bootstrap dropdown list to display whats in the list. First time using Bootstrap with Angular 4 and it doesnt work as it should. I got three items inside the "Varukorg" but it displays on eachother and not in line.
<li *ngIf="user.personId != 2">
<div class="dropdown" style="color:gray;">
<span class="glyphicon glyphicon-shopping-cart" style="color:antiquewhite; margin-top:15px;">
</span>
Varukorg
<div class="numberCircle" *ngIf="count != 0">
<h6 style="margin-top:-6px; margin-left:-3px;">{{count}}
</h6>
</div>
<div>
<ul class="dropdown-content" *ngFor="let items of list">
<li style="margin-left:-10px;">
{{items.name}} - {{items.price}}
</li>
</ul>
</div>
</div>
</li>