Set a max width to login div container

This commit is contained in:
Giuseppe Digilio
2020-03-13 18:28:57 +01:00
parent 580346c2f7
commit b2234e45e9
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
<ds-loading *ngIf="(loading | async) || (isAuthenticated | async)" class="m-5"></ds-loading>
<div *ngIf="!(loading | async) && !(isAuthenticated | async)" class="px-4 py-3">
<div *ngIf="!(loading | async) && !(isAuthenticated | async)" class="px-4 py-3 login-container">
<ng-container *ngFor="let authMethod of (authMethods | async); let i = index">
<div *ngIf="i === 1" class="text-center mt-2">
<span class="align-middle">{{"login.form.or-divider" | translate}}</span>

View File

@@ -0,0 +1,3 @@
.login-container {
max-width: 350px;
}