From 2a2cb3acc91b38b7639077bfc8d19198fd8a554e Mon Sep 17 00:00:00 2001 From: MaysWind Date: Fri, 5 Apr 2024 03:16:27 +0800 Subject: [PATCH] modify style --- src/components/desktop/AmountInput.vue | 12 +++- src/components/desktop/ConfirmDialog.vue | 4 +- .../desktop/DateRangeSelectionDialog.vue | 2 +- .../desktop/SwitchToMobileDialog.vue | 4 +- src/desktop-main.js | 39 +++++++----- src/styles/desktop/global.scss | 53 ++++++++++++++-- .../desktop/template/vuetify/_overrides.scss | 2 +- .../desktop/template/vuetify/index.scss | 2 +- src/views/desktop/ExchangeRatesPage.vue | 21 ++++--- src/views/desktop/ForgetPasswordPage.vue | 2 +- src/views/desktop/HomePage.vue | 31 ++++----- src/views/desktop/LoginPage.vue | 2 +- src/views/desktop/MainLayout.vue | 12 ++-- src/views/desktop/ResetPasswordPage.vue | 2 +- src/views/desktop/SignupPage.vue | 11 ++-- src/views/desktop/UnlockPage.vue | 2 +- src/views/desktop/VerifyEmailPage.vue | 2 +- src/views/desktop/accounts/ListPage.vue | 63 +++++++++++++++---- .../accounts/list/dialogs/EditDialog.vue | 6 +- src/views/desktop/app/AppSettingsPage.vue | 2 +- .../app/settings/tabs/AppLockSettingTab.vue | 5 +- src/views/desktop/categories/ListPage.vue | 11 ++-- .../categories/list/dialogs/EditDialog.vue | 8 +-- .../categories/list/dialogs/PresetDialog.vue | 4 +- .../cards/IncomeExpenseOverviewCard.vue | 10 +-- .../desktop/statistics/TransactionPage.vue | 24 ++++--- .../cards/AccountFilterSettingsCard.vue | 7 ++- .../cards/CategoryFilterSettingsCard.vue | 7 ++- src/views/desktop/tags/ListPage.vue | 34 +++++++--- src/views/desktop/transactions/ListPage.vue | 29 ++++----- .../transactions/list/dialogs/EditDialog.vue | 4 +- src/views/desktop/user/UserSettingsPage.vue | 2 +- .../tabs/UserDataManagementSettingTab.vue | 25 ++++---- .../settings/tabs/UserSecuritySettingTab.vue | 17 ++--- .../tabs/UserTwoFactorAuthSettingTab.vue | 6 +- 35 files changed, 307 insertions(+), 160 deletions(-) diff --git a/src/components/desktop/AmountInput.vue b/src/components/desktop/AmountInput.vue index d2f99a00..342e4d32 100644 --- a/src/components/desktop/AmountInput.vue +++ b/src/components/desktop/AmountInput.vue @@ -8,7 +8,7 @@ :rules="enableRules ? rules : []" v-model="currentValue" @keydown="onKeyUpDown" @keyup="onKeyUpDown"> -
+

{{ transactionOverview && transactionOverview.thisMonth ? getDisplayExpenseAmount(transactionOverview.thisMonth) : '-' }} -

-
+ +
{{ $t('Monthly income') }} {{ transactionOverview && transactionOverview.thisMonth ? getDisplayIncomeAmount(transactionOverview.thisMonth) : '-' }} - +
{{ $t('View Details') }} @@ -47,10 +48,10 @@ -
- {{ $t('format.misc.youHaveAccounts', { count: allAccounts.length }) }} +
+ {{ $t('format.misc.youHaveAccounts', { count: allAccounts.length }) }} -
+
@@ -63,7 +64,7 @@
{{ $t('Total assets') }} - {{ totalAssets }} + {{ totalAssets }}
@@ -79,7 +80,7 @@
{{ $t('Total liabilities') }} - {{ totalLiabilities }} + {{ totalLiabilities }}
@@ -95,7 +96,7 @@
{{ $t('Net assets') }} - {{ netAssets }} + {{ netAssets }}
diff --git a/src/views/desktop/LoginPage.vue b/src/views/desktop/LoginPage.vue index bf12d703..351163b0 100644 --- a/src/views/desktop/LoginPage.vue +++ b/src/views/desktop/LoginPage.vue @@ -22,7 +22,7 @@
-
{{ $t('Welcome to ezBookkeeping') }}
+

{{ $t('Welcome to ezBookkeeping') }}

{{ $t('Please log in with your ezBookkeeping account') }}

diff --git a/src/views/desktop/MainLayout.vue b/src/views/desktop/MainLayout.vue index ce9a9050..cc9fadfe 100644 --- a/src/views/desktop/MainLayout.vue +++ b/src/views/desktop/MainLayout.vue @@ -15,7 +15,7 @@ :options="{ wheelPropagation: false }" @ps-scroll-y="handleNavScroll" > -