1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

ie11 style fixes

This commit is contained in:
Kyle Spearrin 2018-07-07 23:49:48 -04:00
parent e9da73b930
commit de5914194e
2 changed files with 5 additions and 1 deletions

View File

@ -25,7 +25,7 @@
{{'breachUsernameFound' | i18n : checkedUsername : breachedAccounts.length}} {{'breachUsernameFound' | i18n : checkedUsername : breachedAccounts.length}}
</app-callout> </app-callout>
<ul class="list-group list-group-breach" *ngIf="breachedAccounts.length"> <ul class="list-group list-group-breach" *ngIf="breachedAccounts.length">
<li *ngFor="let a of breachedAccounts" class="list-group-item d-flex align-items-center"> <li *ngFor="let a of breachedAccounts" class="list-group-item min-height-fix">
<div class="row"> <div class="row">
<div class="col-2 text-center"> <div class="col-2 text-center">
<img [src]="'https://haveibeenpwned.com/Content/Images/PwnedLogos/' + a.name + '.' + a.logoType" alt="" class="img-fluid"> <img [src]="'https://haveibeenpwned.com/Content/Images/PwnedLogos/' + a.name + '.' + a.logoType" alt="" class="img-fluid">

View File

@ -650,3 +650,7 @@ img.logo {
margin: 0 auto; margin: 0 auto;
display: block; display: block;
} }
.min-height-fix {
min-height: 1px;
}