Skip to content

Commit

Permalink
#790 fix padding in input fields
Browse files Browse the repository at this point in the history
  • Loading branch information
janikEndtner committed Apr 12, 2024
1 parent b081bfe commit b609505
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
<input
type="text"
class="value-field"
class="value-field dialog-form-field"
formControlName="firstname"
#firstInput
[id]="'firstName-col_' + index"
Expand All @@ -28,7 +28,7 @@
type="text"
[id]="'lastname-col_' + index"
[name]="'lastname-col_' + index"
class="value-field"
class="value-field dialog-form-field"
formControlName="lastname"
/>
<mat-error>
Expand All @@ -47,7 +47,7 @@
type="email"
[id]="'email-col_' + index"
[name]="'email-col_' + index"
class="value-field"
class="value-field dialog-form-field"
formControlName="email"
/>
<mat-error>
Expand All @@ -62,7 +62,7 @@
</div>
</div>
<div class="remove">
<div class="input-style equal-sized-col">
<div class="input-style equal-sized-col dialog-form-field">
@if (index === 0) {
<label [for]="'delete-col_' + index">&nbsp;</label>
}
Expand Down

0 comments on commit b609505

Please sign in to comment.