add transaction statistics page

This commit is contained in:
MaysWind
2023-07-09 23:58:33 +08:00
parent 298c0922cb
commit 5e986b2d04
10 changed files with 1289 additions and 4 deletions
+53
View File
@@ -29,6 +29,14 @@ input[type=number] {
}
/** custom class **/
:root {
--default-icon-color: var(--v-theme-on-surface);
}
:root .dark {
--default-icon-color: var(--v-theme-on-surface);
}
.pin-codes-input {
--ebk-pin-code-input-height: 56px;
--ebk-pin-code-input-gap: 12px;
@@ -83,3 +91,48 @@ input[type=number] {
min-width: 16px;
height: 1rem;
}
/** Replacing the default style of @vuepic/vue-datepicker **/
.dp__theme_light {
--dp-primary-color: #c67e48;
}
.dp__theme_dark {
--dp-primary-color: #c67e48;
}
/** Fix @vuepic/vue-datepicker style issue **/
.dp__main.dp__flex_display {
flex-direction: column
}
.dp__main .dp__preset_range {
white-space: inherit;
}
.dp__main .dp__menu_inner {
padding-top: 0;
padding-bottom: 0;
}
.dp__main .dp__menu_inner .dp__month_year_row > button {
width: inherit;
}
.dp__main .dp__menu_inner .dp__month_year_row > button.dp__button {
width: 100%;
}
.dp__main .dp__menu_inner .dp__month_year_row .dp__month_year_wrap > button {
line-height: inherit;
}
.dp__main .dp__calendar .dp__calendar_item {
display: flex;
justify-content: center;
flex: 1;
}
.dp__main .dp__calendar .dp__calendar_item > .dp__cell_inner {
width: 100%;
}