I'm attempting to center align items within a flex container using ngb-rating, but the Bootstrap styles aren't being applied.
<div class="d-flex justify-content-between">
<h3>Team Lead</h3>
<div class="rating-number d-flex justify-content-between align-items-center">
<p>4.5</p>
<ngb-rating class="black-star" [(rate)]="this.star" [readonly]="true" max="1"></ngb-rating>
</div>
</div>
.black-star { color: #000000; }
My goal is to achieve this look: