#150 Removal of inherited css + restyling using bootstrap classes

This commit is contained in:
Jonas Van Goolen
2017-11-13 13:37:02 +01:00
parent 68dd411ae7
commit 7ae8950be5
21 changed files with 58 additions and 76 deletions

View File

@@ -10,8 +10,8 @@
(sortDirectionChange)="onSortDirectionChange($event)"
(sortFieldChange)="onSortDirectionChange($event)"
(paginationChange)="onPaginationChange($event)">
<div class="row" *ngIf="objects.hasSucceeded | async" @fadeIn>
<div class="col-lg-4 col-sm-4 col-xs-12 "
<div class="row " *ngIf="objects.hasSucceeded | async" @fadeIn>
<div class="col-lg-4 col-sm-6 col-xs-12 "
*ngFor="let object of (objects.payload | async) | paginate: { itemsPerPage: (pageInfo | async)?.elementsPerPage, currentPage: (pageInfo | async)?.currentPage, totalItems: (pageInfo | async)?.totalElements }">
<ds-wrapper-grid-element [object]="object"></ds-wrapper-grid-element>
</div>