安卓端显示正常

This commit is contained in:
WindowBird 2025-11-05 11:04:47 +08:00
parent b93b36c1b5
commit 13ec590945
2 changed files with 7 additions and 7 deletions

View File

@ -146,9 +146,9 @@ const viewAnnouncement = (announcement) => {
<style lang="scss" scoped>
.dashboard-scroll {
height: calc(100vh - var(--status-bar-height, 0) - 100px);
padding: 16px;
padding-bottom: 100px;
}
.task-overview {
@ -263,7 +263,7 @@ const viewAnnouncement = (announcement) => {
.announcement-section,
.project-status-section,
.customer-status-section {
margin-bottom: 24px;
}
.section-header {

View File

@ -154,7 +154,7 @@ onShow(() => {
.fixed-tabs {
position: fixed;
top: var(--status-bar-height, 0);
top: 0;
left: 0;
right: 0;
width: 100%;
@ -165,9 +165,9 @@ onShow(() => {
.content-wrapper {
padding-top: 8rpx;
min-height: 100vh;
overflow: hidden;
margin-top: calc(var(--status-bar-height, 0) + 44px);
margin-top: var(--status-bar-height, 0);
}
:deep(.bottom-tabbar) { z-index: 1000 !important; }