Files
webapp/app/components/catalog/MapPanel.vue
Ruslan Bakiev 467f099130
All checks were successful
Build Docker Image / build (push) Successful in 3m25s
Add unified MapPanel component for left map panels
- Create MapPanel with white glass header, dark content
- Refactor SelectionPanel to use MapPanel
- Refactor QuotePanel to use MapPanel
- Single source of truth for panel styling
2026-01-24 11:20:32 +07:00

14 lines
424 B
Vue

<template>
<div class="flex flex-col h-full -m-4">
<!-- Header: белое стекло -->
<div class="sticky top-0 z-10 p-4 rounded-t-xl bg-white/90 backdrop-blur-md border-b border-white/20">
<slot name="header" />
</div>
<!-- Content: тёмный (наследует контейнер) -->
<div class="flex-1 px-4 pt-3 pb-4 overflow-y-auto">
<slot />
</div>
</div>
</template>