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