I have app with list of cards. Card has left border:
.card-border {
border-left: 6px solid;
}
<ion-card *ngFor="let routeJob of route.routeJobs" class="card-border"
[style.border-left-color]="setStatusColor(routeJob.job.status.code)">
I have method that returns name of the color specified in colors map at variables,scss. How can I bind my method output to border-color attribute?