mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
adjusted margin
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
<div *ngFor="let card of feed$ | async">
|
||||
<div *ngFor="let card of (feed$ | async)">
|
||||
<app-book-card *ngIf="card.type === 'products'" [card]="card"></app-book-card>
|
||||
<app-event-card *ngIf="card.type === 'events'" [card]="card"></app-event-card>
|
||||
<app-news-card *ngIf="card.type === 'info'" [card]="card"></app-news-card>
|
||||
<app-recommandation-card *ngIf="card.type === 'REC'" [card]="card"></app-recommandation-card>
|
||||
<app-recommandation-card
|
||||
*ngIf="card.type === 'REC'"
|
||||
[card]="card"
|
||||
></app-recommandation-card>
|
||||
</div>
|
||||
<app-loading [loading]="loading" text="Inhalte werden geladen"></app-loading>
|
||||
<app-loading
|
||||
*ngIf="loading"
|
||||
loading="true"
|
||||
text="Inhalte werden geladen"
|
||||
></app-loading>
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
display: flex;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
min-height: 40px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user