Skip to content

Commit 53a238a

Browse files
WEB-377:fix improve deposit form heading styling and appearance (#2952)
1 parent 3c9ffeb commit 53a238a

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/app/savings/saving-account-actions/savings-account-transactions/savings-account-transactions.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<div class="container mat-elevation-z8">
22
<mat-card>
33
@if (transactionType.withdrawal) {
4-
<h2 mat-title class="m-l-10">
4+
<mat-card-title class="form-heading">
55
{{ 'labels.heading.Withdraw Money From Saving Account' | translate }}
6-
</h2>
6+
</mat-card-title>
77
}
88
@if (transactionType.deposit) {
9-
<h2 mat-title class="m-l-10">
9+
<mat-card-title class="form-heading">
1010
{{ 'labels.heading.Deposit Money To Saving Account' | translate }}
11-
</h2>
11+
</mat-card-title>
1212
}
1313

1414
<form [formGroup]="savingAccountTransactionForm" (ngSubmit)="submit()">

src/app/savings/saving-account-actions/savings-account-transactions/savings-account-transactions.component.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@
1313
.right-label {
1414
padding-right: 25px !important;
1515
}
16+
17+
.form-heading {
18+
font-size: 1.25rem;
19+
font-weight: 500;
20+
margin-bottom: 0.5rem;
21+
}

0 commit comments

Comments
 (0)