Skip to content

Commit 7886c79

Browse files
Merge pull request #3429 from saksham869/fix/WEB-875-clean
fix: WEB-875 Inconsistent top margin in Select Currency dropdown
2 parents b2489cd + 8480afb commit 7886c79

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/organization/tellers/cashiers/transactions/transactions.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@
6262

6363
<div class="container">
6464
<mat-card class="layout-column gap-2percent mat-elevation-z8">
65-
<div class="layout-row gap-2percent">
65+
<div class="layout-row gap-2percent layout-align-start-center">
6666
<mat-form-field class="flex-fill">
6767
<mat-label>{{ 'labels.inputs.Filter' | translate }}</mat-label>
6868
<input matInput (keyup)="applyFilter($event.target.value)" />
6969
</mat-form-field>
7070

71-
<mat-form-field>
72-
<mat-label> {{ 'labels.inputs.Select Currency' | translate }} </mat-label>
71+
<mat-form-field class="flex-fill">
72+
<mat-label>{{ 'labels.inputs.Select Currency' | translate }}</mat-label>
7373
<mat-select [formControl]="currencySelector" required>
7474
@for (currency of currencyData; track currency) {
7575
<mat-option [value]="currency.code">

0 commit comments

Comments
 (0)