fix(ui): adjust mobile bottom padding to match top margin
All checks were successful
Deploy to Production / deploy (push) Successful in 5s

This commit is contained in:
2026-02-26 23:35:00 +00:00
parent c6baace721
commit 3b229b4719

View File

@@ -66,8 +66,8 @@ onUnmounted(() => {
padding: 2rem;
width: 100%;
max-width: 100%;
/* Space for fixed footer on mobile + extra margin (generous to ensure gap) */
padding-bottom: calc(100px + env(safe-area-inset-bottom));
/* Space for fixed footer on mobile + extra margin (match top padding 2rem + footer height ~40px) */
padding-bottom: calc(2rem + 40px + env(safe-area-inset-bottom));
}
@media (min-width: 768px) {