fix: 优化底部导航栏样式,调整高度和盒模型设置
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 23s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s

This commit is contained in:
SunCheng
2026-02-11 14:47:53 +08:00
parent 0d649b76a2
commit dfa2c405c5

View File

@@ -403,9 +403,8 @@ onMounted(() => {
/* 重置所有 padding然后只添加安全区域 */ /* 重置所有 padding然后只添加安全区域 */
padding: 0 !important; padding: 0 !important;
padding-bottom: env(safe-area-inset-bottom, 0px) !important; padding-bottom: env(safe-area-inset-bottom, 0px) !important;
height: auto !important; height: calc(50px + env(safe-area-inset-bottom, 0px)) !important;
min-height: 50px !important; box-sizing: border-box !important;
box-sizing: content-box !important;
background: var(--bg-primary) !important; background: var(--bg-primary) !important;
border-top: 1px solid var(--bg-tertiary); border-top: 1px solid var(--bg-tertiary);
} }