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

View File

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