fix: card grid grid gets streched if vertical space is not used fully

Fixed by adding a container for the card grid.
That way the actual card grid has no height and
is therefore not streched vertically.
This commit is contained in:
2019-11-17 19:57:05 +01:00
parent 5341b5e307
commit 90331bd029
2 changed files with 14 additions and 9 deletions

View File

@@ -20,11 +20,14 @@
<pdb-gallery-filter-view (valueChanged)="filterChanged($event)"></pdb-gallery-filter-view>
</div>
<div
*ngIf="show"
id="gallery"
class="card-grid-300">
<pdb-gallery-item-view
*ngFor="let galleryItem of filteredSortedGalleryItems()" [data]="galleryItem">
</pdb-gallery-item-view>
<div
*ngIf="show"
class="card-grid-container">
<div
id="gallery"
class="card-grid-300">
<pdb-gallery-item-view
*ngFor="let galleryItem of filteredSortedGalleryItems()" [data]="galleryItem">
</pdb-gallery-item-view>
</div>
</div>