Skip to content

Commit

Permalink
119965: Vertically align text in comcol page browse tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevryghem committed Dec 4, 2024
1 parent e4daf2b commit a9ad534
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ <h2 class="comcol-browse-label h5">{{'browse.comcol.head' | translate}}</h2>

<div class="list-group list-group-horizontal">
<a *ngFor="let option of allOptions"
class="list-group-item"
class="d-flex list-group-item"
[routerLink]="option.routerLink"
[queryParams]="option.params"
routerLinkActive="active">{{ option.label | translate }}</a>
routerLinkActive="active">
<span class="my-auto">{{ option.label | translate }}</span>
</a>
</div>
</div>

Expand Down

0 comments on commit a9ad534

Please sign in to comment.