debugger
This commit is contained in:
@@ -185,14 +185,29 @@ fetchDailyStatistics(now.getFullYear(), now.getMonth() + 1)
|
||||
.calendar-container {
|
||||
/* 使用准确的视口高度减去 TabBar 高度(50px)和安全区域 */
|
||||
height: calc(var(--vh, 100vh) - 50px - env(safe-area-inset-bottom, 0px));
|
||||
max-height: calc(var(--vh, 100vh) - 50px - env(safe-area-inset-bottom, 0px));
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.calendar-container :deep(.van-calendar) {
|
||||
height: 100%;
|
||||
height: 100% !important;
|
||||
flex: 1;
|
||||
overflow: auto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* 移除日历组件可能的底部 padding */
|
||||
.calendar-container :deep(.van-calendar__body) {
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.calendar-container :deep(.van-calendar__months) {
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.date-transactions {
|
||||
|
||||
@@ -572,7 +572,7 @@ onMounted(async () => {
|
||||
|
||||
.floating-search {
|
||||
position: fixed;
|
||||
bottom: 50px;
|
||||
bottom: 90px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 999;
|
||||
|
||||
Reference in New Issue
Block a user