fix: header height 118 -> 104px
All checks were successful
Build Docker Image / build (push) Successful in 4m28s

This commit is contained in:
Ruslan Bakiev
2026-01-14 22:49:59 +07:00
parent 8a0a32ce6b
commit 23bdd926bf

View File

@@ -109,9 +109,9 @@ const localePath = useLocalePath()
const { t } = useI18n()
// Smooth collapsible header
// MainNav: h-16 (64px) + border (1px) = 65px
// SubNav: py-2 (16px) + links (36px) + border (1px) = 53px
// Total header = 65 + 53 = 118px, SearchBar = 48px
// MainNav: 64px (h-16)
// SubNav: 40px (py-2 + links)
// Total header = 104px, SearchBar = 48px
const {
headerOffset,
searchBarTop,
@@ -120,7 +120,7 @@ const {
isCollapsed,
expand,
collapse
} = useScrollCollapse(118, 48)
} = useScrollCollapse(104, 48)
// Mobile view toggle
const mobileView = ref<'list' | 'map'>('list')