fix(aigc detail): add safe area bottom padding

adjust page padding to avoid content overlapping with mobile gesture area
This commit is contained in:
duanshuwen
2026-07-23 22:45:06 +08:00
parent 18e85af78f
commit 8fae0ed483

View File

@@ -22,7 +22,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
padding: 0 12px; padding: 0 12px calc(12px + env(safe-area-inset-bottom));
box-sizing: border-box; box-sizing: border-box;
} }