fix: improve route visibility and lift offers banner

This commit is contained in:
2026-02-27 22:40:16 -05:00
parent 8e75f24b1e
commit 1cd83f5fb3
3 changed files with 15 additions and 9 deletions

View File

@ -1209,8 +1209,8 @@ async function calculateWalkingPath(origin: { lat: number, lng: number }, target
═══════════════════════════════════════ */
.offers-sheet {
position: fixed;
/* Base 72px (altura menú) + 16px espacio visual + safe area */
bottom: calc(72px + 16px + env(safe-area-inset-bottom, 0px));
/* Base 72px (altura menú) + 40px espacio visual + safe area */
bottom: calc(72px + 40px + env(safe-area-inset-bottom, 0px));
left: 10px;
right: 10px;
background: #fff;
@ -1236,7 +1236,7 @@ async function calculateWalkingPath(origin: { lat: number, lng: number }, target
@media (max-width: 900px) {
.offers-sheet {
/* En móvil más espacio aún por el menú nativo */
bottom: calc(80px + env(safe-area-inset-bottom, 0px));
bottom: calc(100px + env(safe-area-inset-bottom, 0px));
left: 8px;
right: 8px;
}