fix no collections padding

This commit is contained in:
Kyle Spearrin 2019-06-24 20:38:23 -04:00
parent 0bfccfcb4f
commit db83b042ff
4 changed files with 10 additions and 4 deletions

2
jslib

@ -1 +1 @@
Subproject commit 8375f7381ad1d113fbf2fe2bd65e90ec4a1631b7
Subproject commit bc5a6e02c106dc87413f22b7c7cb0334c1fc6e88

View File

@ -337,7 +337,9 @@
{{'collections' | i18n}}
</div>
<div class="box-content" *ngIf="!collections || !collections.length">
{{'noCollectionsInList' | i18n}}
<div class="box-content-row padded no-hover">
{{'noCollectionsInList' | i18n}}
</div>
</div>
<div class="box-content" *ngIf="collections && collections.length">
<div class="box-content-row box-content-row-checkbox" *ngFor="let c of collections; let i = index"

View File

@ -19,7 +19,9 @@
<content>
<div class="box">
<div class="box-content" *ngIf="!collections || !collections.length">
{{'noCollectionsInList' | i18n}}
<div class="box-content-row padded no-hover">
{{'noCollectionsInList' | i18n}}
</div>
</div>
<div class="box-content" *ngIf="collections && collections.length">
<div class="box-content-row box-content-row-checkbox" *ngFor="let c of collections; let i = index"

View File

@ -39,7 +39,9 @@
{{'collections' | i18n}}
</div>
<div class="box-content" *ngIf="!collections || !collections.length">
{{'noCollectionsInList' | i18n}}
<div class="box-content-row padded no-hover">
{{'noCollectionsInList' | i18n}}
</div>
</div>
<div class="box-content" *ngIf="collections && collections.length">
<div class="box-content-row box-content-row-checkbox" *ngFor="let c of collections; let i = index"