1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-25 16:59:17 +01:00

center stuff

This commit is contained in:
Kyle Spearrin 2018-07-24 17:13:39 -04:00
parent 2da21e9e2b
commit bdcbe4ee00

View File

@ -42,7 +42,7 @@
</ng-container> </ng-container>
<ng-container *ngIf="selectedProviderType === providerType.Yubikey"> <ng-container *ngIf="selectedProviderType === providerType.Yubikey">
<div class="content text-center"> <div class="content text-center">
<p>{{'insertYubiKey' | i18n}}</p> <p class="text-center">{{'insertYubiKey' | i18n}}</p>
<img src="../images/yubikey.jpg" class="img-rounded img-responsive" alt=""> <img src="../images/yubikey.jpg" class="img-rounded img-responsive" alt="">
</div> </div>
<div class="box first"> <div class="box first">
@ -61,7 +61,7 @@
</ng-container> </ng-container>
<ng-container *ngIf="selectedProviderType === providerType.U2f"> <ng-container *ngIf="selectedProviderType === providerType.U2f">
<div class="content text-center"> <div class="content text-center">
<span *ngIf="!u2fReady"><i class="fa fa-spinner fa-spin"></i></span> <span *ngIf="!u2fReady" class="text-center"><i class="fa fa-spinner fa-spin"></i></span>
<div *ngIf="u2fReady"> <div *ngIf="u2fReady">
<p>{{'insertU2f' | i18n}}</p> <p>{{'insertU2f' | i18n}}</p>
<img src="../images/u2fkey.jpg" alt="" class="img-rounded img-responsive" /> <img src="../images/u2fkey.jpg" alt="" class="img-rounded img-responsive" />
@ -89,15 +89,15 @@
</div> </div>
</div> </div>
</ng-container> </ng-container>
<div class="content text-center" *ngIf="selectedProviderType == null"> <div class="content" *ngIf="selectedProviderType == null">
<p>{{'noTwoStepProviders' | i18n}}</p> <p class="text-center">{{'noTwoStepProviders' | i18n}}</p>
<p>{{'noTwoStepProviders2' | i18n}}</p> <p class="text-center">{{'noTwoStepProviders2' | i18n}}</p>
</div> </div>
<div class="content no-vpad text-center" *ngIf="selectedProviderType != null"> <div class="content no-vpad" *ngIf="selectedProviderType != null">
<p> <p class="text-center">
<a href="#" appStopClick (click)="anotherMethod()">{{'useAnotherTwoStepMethod' | i18n}}</a> <a href="#" appStopClick (click)="anotherMethod()">{{'useAnotherTwoStepMethod' | i18n}}</a>
</p> </p>
<p *ngIf="selectedProviderType === providerType.Email"> <p *ngIf="selectedProviderType === providerType.Email" class="text-center">
<a href="#" appStopClick (click)="sendEmail(true)" [appApiAction]="emailPromise"> <a href="#" appStopClick (click)="sendEmail(true)" [appApiAction]="emailPromise">
{{'sendVerificationCodeEmailAgain' | i18n}} {{'sendVerificationCodeEmailAgain' | i18n}}
</a> </a>