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
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user