From 5c59ccd226d1c182c2b179ec7c12ad6ced27a492 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Mon, 11 Jan 2021 00:33:40 +0800 Subject: [PATCH] code refactor --- src/views/mobile/Home.vue | 8 ++++++-- src/views/mobile/accounts/List.vue | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/views/mobile/Home.vue b/src/views/mobile/Home.vue index 1972d0d5..60bcdda0 100644 --- a/src/views/mobile/Home.vue +++ b/src/views/mobile/Home.vue @@ -22,8 +22,8 @@
- Income of this month 0.00 USD - + Income of this month 0.00 USD + {{ $t('Income of this month') }} {{ thisMonthIncome | amount(showAmountInHomePage) | currency(defaultCurrency) }} @@ -300,6 +300,10 @@ export default { font-size: 1.5em; } +.home-summary-misc { + opacity: 0.6; +} + .home-summary-misc > span { margin-right: 4px; } diff --git a/src/views/mobile/accounts/List.vue b/src/views/mobile/accounts/List.vue index 011c6c18..f4c2a5df 100644 --- a/src/views/mobile/accounts/List.vue +++ b/src/views/mobile/accounts/List.vue @@ -24,10 +24,10 @@
- + Total assets | Total liabilities - + {{ $t('Total assets') }} {{ totalAssets | currency(defaultCurrency) }} | @@ -598,6 +598,10 @@ export default { font-size: 1.5em; } +.account-overview-info { + opacity: 0.6; +} + .account-overview-info > span { margin-right: 4px; }