From 6a7ccadc666967935c0911e94f5571eaa61ba09b Mon Sep 17 00:00:00 2001 From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com> Date: Thu, 8 Apr 2021 11:13:55 +0200 Subject: [PATCH] fix(structures): fix card layout --- src/app/structure-list/components/card/card.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html index 848615e19..bf5ea36b4 100644 --- a/src/app/structure-list/components/card/card.component.html +++ b/src/app/structure-list/components/card/card.component.html @@ -1,5 +1,5 @@ <div class="structure" fxLayout="column" (click)="cardClicked()" (mouseenter)="cardHover()"> - <div class="headerStructure" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px"> + <div class="headerStructure" fxLayout="row" fxLayoutAlign="space-between baseline" fxLayoutGap="16px"> <div fxLayout="column" fxLayoutAlign="end"> <span class="structure-name" [ngClass]="{ notClaimed: !isClaimed }">{{ structure.structureName }}</span> <span class="typeStructure">{{ structure.getLabelTypeStructure() }}</span> -- GitLab