Skip to content

Commit

Permalink
fix(footer): remove unnecessary row class to avoid negative margins (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jul 24, 2020
1 parent 5c33a48 commit 34ed648
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
</slick-pagination>

<!-- Custom Footer section under the grid -->
<div *ngIf="showCustomFooter && customFooterOptions" class="slick-custom-footer row" style="width: 100%;"
[style.height]="customFooterOptions?.footerHeight || 20">
<div *ngIf="showCustomFooter && customFooterOptions" class="slick-custom-footer" style="width: 100%;"
[style.height]="customFooterOptions?.footerHeight || 20">
<div class="left-footer" [ngClass]="customFooterOptions.leftContainerClass">
{{customFooterOptions.leftFooterText}}
</div>

<div class="right-footer metrics" [ngClass]="customFooterOptions.rightContainerClass"
*ngIf="metrics && !customFooterOptions.hideMetrics">
*ngIf="metrics && !customFooterOptions.hideMetrics">
<span *ngIf="!customFooterOptions.hideLastUpdateTimestamp">
<span>{{customFooterOptions.metricTexts?.lastUpdate}}</span>

Expand Down

0 comments on commit 34ed648

Please sign in to comment.