From 5258347ccb6426a6f893b3078b097848e3553cbb Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Fri, 23 Jan 2026 10:53:21 +0700 Subject: [PATCH] UI fixes: header height, map color, panel scroll - MainNavigation: fixed min-height to prevent jumping on mode switch - CatalogMap: default pointColor changed from green to orange (#f97316) - CatalogPage: panel scroll on entire container, not inner - SelectionPanel: sticky header and search, removed inner scroll --- app/components/catalog/CatalogMap.vue | 2 +- app/components/catalog/SelectionPanel.vue | 12 ++++++------ app/components/navigation/MainNavigation.vue | 2 +- app/components/page/CatalogPage.vue | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/components/catalog/CatalogMap.vue b/app/components/catalog/CatalogMap.vue index 8699df4..2d51278 100644 --- a/app/components/catalog/CatalogMap.vue +++ b/app/components/catalog/CatalogMap.vue @@ -51,7 +51,7 @@ const props = withDefaults(defineProps<{ initialCenter?: [number, number] initialZoom?: number }>(), { - pointColor: '#10b981', + pointColor: '#f97316', initialCenter: () => [37.64, 55.76], initialZoom: 2, useServerClustering: false, diff --git a/app/components/catalog/SelectionPanel.vue b/app/components/catalog/SelectionPanel.vue index c5b4741..3dec17e 100644 --- a/app/components/catalog/SelectionPanel.vue +++ b/app/components/catalog/SelectionPanel.vue @@ -1,15 +1,15 @@