fix(orders): bottom sheet doesn't cover side panel on desktop
All checks were successful
Build Docker Image / build (push) Successful in 4m7s

This commit is contained in:
Ruslan Bakiev
2026-01-29 19:57:29 +07:00
parent 1850d255a7
commit a244589fe5

View File

@@ -2,10 +2,10 @@
<Transition name="order-slide">
<div
v-if="isOpen && orderUuid"
class="fixed inset-x-0 bottom-0 z-50 flex flex-col"
class="fixed left-0 right-0 lg:left-96 bottom-0 z-50 flex flex-col"
style="height: 70vh"
>
<!-- Backdrop (clickable to close) -->
<!-- Backdrop (clickable to close) - only covers map area, not panel -->
<div
class="absolute inset-0 -top-[30vh] bg-black/30"
@click="emit('close')"