Skip to content

Commit

Permalink
fix:Change the header for multi-select of expense inside my-expense (#…
Browse files Browse the repository at this point in the history
…3277)

Co-authored-by: Snehasish <[email protected]>
  • Loading branch information
2 people authored and Snehasish committed Nov 21, 2024
1 parent 09a3896 commit 94997c5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/fyle/my-expenses/my-expenses.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@
<ng-container *ngIf="homeCurrency$ | async as homeCurrency">
<ng-container *ngIf="allExpensesStats$ | async as allExpensesStats">
<ion-title class="my-expenses--multiselect-title page-title">
{{allExpensesStats?.count}} {{(allExpensesStats?.count > 1) ? 'expenses' : 'expense'}} worth
{{(allExpensesStats.amount || 0) | humanizeCurrency: homeCurrency }}
{{allExpensesStats?.count}} {{(allExpensesStats?.count > 1) ? 'expenses' : 'expense'}}
<span class="my-expenses--multiselect-amount">
({{(allExpensesStats.amount || 0) | humanizeCurrency: homeCurrency }})
</span>
</ion-title>
</ng-container>
</ng-container>
Expand Down
5 changes: 5 additions & 0 deletions src/app/fyle/my-expenses/my-expenses.page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
padding-right: 0px;
}

&--multiselect-amount {
font-size: 16px;
font-weight: 400;
}

&--content {
--background: #{$white};
--padding-bottom: 82px;
Expand Down

0 comments on commit 94997c5

Please sign in to comment.