I would like to align the text on the left with the 3 buttons on the right of my following panel-heading :
here is my code :
<div class="col-lg-9 col-md-9 col-sm-9">
<h4 class="panel-title">
<!--<a data-toggle="collapse" data-target="#collapse1">-->
<h2>Pf <strong>{{pf.pfid}}</strong></h2>
<!-- </a>-->
</h4>
</div>
<div class="col-lg-1 col-md-1 col-sm-1">
<button class="btn btn-danger btn-circle-lg" (click)="AddPf()" disabled><span class="glyphicon glyphicon-plus"></span></button>
</div>
<div class="col-lg-1 col-md-1 col-sm-1">
<button class="btn btn-warning btn-circle-lg" (click)="showAccForm()"><span class="glyphicon glyphicon-plus"></span></button>
</div>
<div class="col-lg-1 col-md-1 col-sm-1" *ngIf="authorization.profileid==1">
<button class="btn btn-info btn-circle-lg" (click)="showAssForm()"><span class="glyphicon glyphicon-plus"></span></button>
</div>
Any idea ?