fix
All checks were successful
Docker Build & Deploy / Deploy to Production (push) Successful in 7s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s
Docker Build & Deploy / Build Docker Image (push) Successful in 21s

This commit is contained in:
SunCheng
2026-02-11 17:18:37 +08:00
parent 0fed10b60d
commit 841b53e75b

View File

@@ -163,7 +163,7 @@ onMounted(() => {
<style scoped lang="scss">
.glass-nav-container {
position: fixed;
bottom: 0;
bottom: env(safe-area-inset-bottom, 0px); /* iOS PWA安全区域适配容器整体抬高 */
left: 0;
right: 0;
width: 100%;
@@ -176,7 +176,7 @@ onMounted(() => {
width: 100%;
background: linear-gradient(180deg, rgba(246, 247, 248, 0) 0%, rgba(246, 247, 248, 1) 50%);
padding: 12px 16px;
padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
padding-bottom: 8px; /* 简化padding安全区域已由container的bottom处理 */
pointer-events: none;
display: flex;
align-items: flex-end;