fix
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 20s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 0s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 20s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 0s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<!-- iOS Safari -->
|
<!-- iOS Safari -->
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
||||||
<meta name="apple-mobile-web-app-title" content="账单管理">
|
<meta name="apple-mobile-web-app-title" content="账单管理">
|
||||||
<link rel="apple-touch-icon" href="/icons/icon-152x152.svg">
|
<link rel="apple-touch-icon" href="/icons/icon-152x152.svg">
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.svg">
|
<link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.svg">
|
||||||
|
|||||||
@@ -231,6 +231,7 @@ const handleAddTransactionSuccess = () => {
|
|||||||
/* 使用准确的视口高度 CSS 变量 */
|
/* 使用准确的视口高度 CSS 变量 */
|
||||||
height: var(--vh, 100vh);
|
height: var(--vh, 100vh);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
background-color: var(--van-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-root {
|
.app-root {
|
||||||
@@ -240,7 +241,7 @@ const handleAddTransactionSuccess = () => {
|
|||||||
padding-top: max(0px, calc(env(safe-area-inset-top, 0px) * 0.75));
|
padding-top: max(0px, calc(env(safe-area-inset-top, 0px) * 0.75));
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: transparent;
|
background-color: var(--van-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TabBar 固定在底部 */
|
/* TabBar 固定在底部 */
|
||||||
|
|||||||
@@ -336,7 +336,6 @@ onBeforeUnmount(() => {
|
|||||||
.calendar-v2-wrapper {
|
.calendar-v2-wrapper {
|
||||||
font-family: var(--font-primary);
|
font-family: var(--font-primary);
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
background-color: var(--van-background);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.calendar-scroll-content {
|
.calendar-scroll-content {
|
||||||
@@ -344,6 +343,7 @@ onBeforeUnmount(() => {
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
overscroll-behavior: contain;
|
overscroll-behavior: contain;
|
||||||
|
background-color: var(--bg-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ========== 头部 ========== */
|
/* ========== 头部 ========== */
|
||||||
|
|||||||
Reference in New Issue
Block a user