Files
webapp/app/components/catalog/MapPanel.vue
Ruslan Bakiev 4d018323e7
All checks were successful
Build Docker Image / build (push) Successful in 3m21s
Fix catalog issues: quantity input, checkbox position, glass header
1. Quantity input in Quote mode: replaced button with inline number input
2. Checkbox position: moved to left side (next to panel) instead of right
3. MapPanel glass header: fixed sticky positioning by moving negative margins to children
2026-01-24 11:40:33 +07:00

14 lines
516 B
Vue

<template>
<div class="flex flex-col h-full">
<!-- Header: белое стекло (negative margins to expand beyond parent padding) -->
<div class="sticky top-0 z-10 -mx-4 -mt-4 px-4 pt-4 pb-3 rounded-t-xl bg-white/90 backdrop-blur-md border-b border-white/20">
<slot name="header" />
</div>
<!-- Content: тёмный (negative margins to expand beyond parent padding) -->
<div class="flex-1 -mx-4 -mb-4 px-4 pt-3 pb-4 overflow-y-auto">
<slot />
</div>
</div>
</template>