Fixed: chips overlapping bug on dmp listing

This commit is contained in:
apapachristou 2019-05-08 13:25:06 +03:00
parent 2fba31012a
commit 10a05fd8c5
2 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,7 @@
<mat-icon class="col-auto type-icon">storage</mat-icon>
<h4 class="col-auto m-2 p-1">{{dmp.associatedProfiles.length}}</h4>
<div class="row" *ngFor="let profile of dmp.associatedProfiles">
<div class="col-auto dmp-chip ml-2">{{profile.label}}</div>
<div class="col-auto dmp-chip ml-3 mr-5">{{profile.label}}</div>
</div>
</div>
<div class="row d-flex align-items-center my-1">

View File

@ -35,4 +35,8 @@
width: auto;
height: auto;
}
.mr-5 {
margin-right: 2rem !important;
}
}