1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

[PM-1541] Adjust the dialogs max-width (#5036)

This commit is contained in:
Oscar Hinton
2023-04-25 16:45:35 +02:00
committed by GitHub
parent 85277aa2f8
commit 76673ebe8b
5 changed files with 15 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
<form [formGroup]="formGroup" [bitSubmit]="submit">
<bit-dialog dialogSize="default">
<bit-dialog dialogSize="large">
<ng-container bitDialogTitle>{{ title | i18n }}</ng-container>
<div bitDialogContent class="tw-relative">
<div

View File

@@ -1,4 +1,4 @@
<bit-dialog>
<bit-dialog dialogSize="large">
<span bitDialogTitle>
{{ "importError" | i18n }}
</span>
@@ -13,7 +13,9 @@
</ng-container>
<ng-template body>
<tr bitRow *ngFor="let line of errorLines">
<td bitCell class="tw-break-all">[{{ line.id }}] [{{ line.type }}] {{ line.key }}</td>
<td bitCell class="tw-whitespace-nowrap">
[{{ line.id }}] [{{ line.type }}] {{ line.key }}
</td>
<td bitCell>{{ line.errorMessage }}</td>
</tr>
</ng-template>