diff --git a/app/components/navigation/MainNavigation.vue b/app/components/navigation/MainNavigation.vue index 90373c3..75210d0 100644 --- a/app/components/navigation/MainNavigation.vue +++ b/app/components/navigation/MainNavigation.vue @@ -2,21 +2,21 @@
- -
+ +
Optovia
-
- +
+
- +
@@ -24,17 +24,17 @@
- - {{ token.label }} + + {{ token.label }}
@@ -44,31 +44,31 @@ v-model="localSearchQuery" type="text" :placeholder="placeholder" - class="flex-1 min-w-32 bg-transparent outline-none text-lg" + class="flex-1 min-w-32 bg-transparent outline-none" @input="$emit('update:search-query', localSearchQuery)" />
- +
- -
+ +
diff --git a/app/layouts/topnav.vue b/app/layouts/topnav.vue index 3bf0e22..e577f73 100644 --- a/app/layouts/topnav.vue +++ b/app/layouts/topnav.vue @@ -60,7 +60,7 @@ const { } = useCatalogSearch() // Collapsible header for catalog pages -const { headerOffset, isCollapsed } = useScrollCollapse(130) +const { headerOffset, isCollapsed } = useScrollCollapse(100) // Theme state const theme = useState<'cupcake' | 'night'>('theme', () => 'cupcake') @@ -131,10 +131,10 @@ const headerStyle = computed(() => { }) // Main content padding-top to compensate for fixed header -// 130px = MainNav with search block (input + chips in one block) -// 184px = MainNav + SubNav (orders, seller, settings) +// 100px = MainNav with search (input + chips) +// 154px = MainNav + SubNav (orders, seller, settings) const mainStyle = computed(() => ({ - paddingTop: (isHomePage.value || isCatalogSection.value) ? '130px' : '184px' + paddingTop: (isHomePage.value || isCatalogSection.value) ? '100px' : '154px' })) // Provide collapsed state to child components (CatalogPage needs it for map positioning)