From 530c97b9121e8609321c5bb2aa2739c972e15c4c Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Thu, 12 Mar 2026 15:25:37 +0700 Subject: [PATCH] feat: align landing capsule and remove glass from map ui --- app/assets/css/tailwind.css | 7 ++++ .../catalog/AddressDetailBottomSheet.vue | 4 +- app/components/catalog/KycBottomSheet.vue | 4 +- app/components/catalog/MapPanel.vue | 4 +- .../catalog/OrderDetailBottomSheet.vue | 4 +- app/components/navigation/MainNavigation.vue | 41 ++++++++++++++++--- app/components/page/CatalogPage.vue | 28 ++++++------- app/layouts/topnav.vue | 3 +- app/pages/clientarea/orders/[id].vue | 4 +- app/pages/clientarea/profile/index.vue | 2 +- app/pages/clientarea/team/index.vue | 2 +- 11 files changed, 71 insertions(+), 32 deletions(-) diff --git a/app/assets/css/tailwind.css b/app/assets/css/tailwind.css index a22bf03..f11d9e6 100644 --- a/app/assets/css/tailwind.css +++ b/app/assets/css/tailwind.css @@ -85,6 +85,13 @@ backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); } + + /* Map overlays must stay solid (no glass) */ + .map-chip { + background: color-mix(in oklab, var(--color-base-100) 96%, transparent); + border: 1px solid color-mix(in oklab, var(--color-base-300) 80%, transparent); + box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12); + } } /* ── Header glass: two-layer Apple-style glassmorphism ── */ diff --git a/app/components/catalog/AddressDetailBottomSheet.vue b/app/components/catalog/AddressDetailBottomSheet.vue index 77aff5e..b785643 100644 --- a/app/components/catalog/AddressDetailBottomSheet.vue +++ b/app/components/catalog/AddressDetailBottomSheet.vue @@ -12,9 +12,9 @@ /> -
+
-
+
diff --git a/app/components/catalog/KycBottomSheet.vue b/app/components/catalog/KycBottomSheet.vue index afd46eb..420d6ac 100644 --- a/app/components/catalog/KycBottomSheet.vue +++ b/app/components/catalog/KycBottomSheet.vue @@ -12,9 +12,9 @@ /> -
+
-
+
diff --git a/app/components/catalog/MapPanel.vue b/app/components/catalog/MapPanel.vue index 83d3e08..14f82a1 100644 --- a/app/components/catalog/MapPanel.vue +++ b/app/components/catalog/MapPanel.vue @@ -1,7 +1,7 @@