diff --git a/app/components/navigation/MainNavigation.vue b/app/components/navigation/MainNavigation.vue index e77427d..85bd857 100644 --- a/app/components/navigation/MainNavigation.vue +++ b/app/components/navigation/MainNavigation.vue @@ -1,14 +1,14 @@ @@ -523,13 +524,6 @@ const rowStyle = computed(() => { return { height: `${props.height}px` } }) -const glassStyle = computed(() => { - if (isHeroLayout.value) { - return { height: `${topRowHeight}px` } - } - return { height: '100%' } -}) - const centerStyle = computed(() => { if (!isHeroLayout.value) return {} const heroHeight = props.height || topRowHeight @@ -540,9 +534,6 @@ const centerStyle = computed(() => { return { marginTop: `${top}px` } }) -// Header background classes — two-layer glass is handled by .header-glass + .header-glass-backdrop -const headerClasses = computed(() => '') - // Use white text on dark backgrounds (collapsed or home page with animation) const useWhiteText = computed(() => props.isCollapsed || props.isHomePage)