1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

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

Submodule jslib updated: 8375f7381a...bc5a6e02c1

View File

@@ -337,8 +337,10 @@
{{'collections' | i18n}}
</div>
<div class="box-content" *ngIf="!collections || !collections.length">
<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"
appBoxRow>

View File

@@ -19,8 +19,10 @@
<content>
<div class="box">
<div class="box-content" *ngIf="!collections || !collections.length">
<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"
appBoxRow>

View File

@@ -39,8 +39,10 @@
{{'collections' | i18n}}
</div>
<div class="box-content" *ngIf="!collections || !collections.length">
<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"
appBoxRow>