Fixed css issues of LogInComponent where text would overflow

This commit is contained in:
Alexandre Vryghem
2023-02-23 21:56:04 +01:00
parent e4f483c308
commit af23a3a8e3
2 changed files with 6 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 login-container">
<div *ngIf="!(loading | async) && !(isAuthenticated | async)" class="px-4 py-3 mx-auto 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

@@ -1,3 +1,8 @@
.login-container {
max-width: 350px;
}
a {
white-space: normal;
padding: .25rem .75rem;
}