fix(样式): 调整微信页面布局高度以避免溢出

将高度从100vh改为calc(100vh - 64px),防止内容被顶部导航栏遮挡
This commit is contained in:
超级老白兔
2025-09-09 10:00:10 +08:00
parent fbc40bb4be
commit 79ccb20135

View File

@@ -1,5 +1,5 @@
.ckboxLayout {
height: 100vh;
height: calc(100vh - 64px);
background: #fff;
display: flex;
flex-direction: column;