Skip to content

Commit 1bc6f3c

Browse files
committed
WEB-411: Improve alignment of Debit and Credit Amount fields in Create Journal Entry form
- Changed Debit Amount field from flex-43 to flex-24 to align under Currency field - Changed Credit Amount field from flex-43 to flex-24 to align under External Asset Owner field - Kept all add/remove button functionality intact
1 parent 03e6703 commit 1bc6f3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/accounting/create-journal-entry/create-journal-entry.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
>
5050
</mifosx-gl-account-selector>
5151

52-
<mat-form-field class="flex-43">
52+
<mat-form-field class="flex-24">
5353
<mat-label>{{ 'labels.inputs.Debit Amount' | translate }}</mat-label>
5454
<input type="number" matInput required formControlName="amount" />
5555
<mat-error *ngIf="debits.at(i).controls.amount.hasError('required')">
@@ -90,7 +90,7 @@
9090
>
9191
</mifosx-gl-account-selector>
9292

93-
<mat-form-field class="flex-43">
93+
<mat-form-field class="flex-24">
9494
<mat-label>{{ 'labels.inputs.Credit Amount' | translate }}</mat-label>
9595
<input type="number" matInput required formControlName="amount" />
9696
<mat-error *ngIf="credits.at(i).controls.amount.hasError('required')">

0 commit comments

Comments
 (0)