diff --git a/app/components/navigation/MainNavigation.vue b/app/components/navigation/MainNavigation.vue index c255093..60b05fe 100644 --- a/app/components/navigation/MainNavigation.vue +++ b/app/components/navigation/MainNavigation.vue @@ -15,8 +15,8 @@ v-for="tab in visibleTabs" :key="tab.key" :to="localePath(tab.path)" - class="tab-item" - :class="{ 'tab-active': isActiveTab(tab.key) }" + class="px-4 py-2 rounded-full font-medium text-sm transition-colors hover:bg-base-200" + :class="{ 'bg-base-200 text-primary': isActiveTab(tab.key) }" > {{ tab.label }} @@ -138,8 +138,8 @@ v-for="tab in visibleTabs" :key="tab.key" :to="localePath(tab.path)" - class="tab-item-mobile" - :class="{ 'tab-active': isActiveTab(tab.key) }" + class="flex flex-col items-center gap-1 px-4 py-2 rounded-lg hover:bg-base-200" + :class="{ 'bg-base-200 text-primary': isActiveTab(tab.key) }" > {{ tab.label }} @@ -196,24 +196,3 @@ const isActiveTab = (key: string) => { } - diff --git a/app/components/navigation/SubNavigation.vue b/app/components/navigation/SubNavigation.vue index 1a430fe..737eae5 100644 --- a/app/components/navigation/SubNavigation.vue +++ b/app/components/navigation/SubNavigation.vue @@ -5,8 +5,8 @@ v-for="item in items" :key="item.path" :to="localePath(item.path)" - class="subnav-item" - :class="{ active: isActive(item.path) }" + class="px-4 py-2 rounded-full text-sm font-medium transition-colors whitespace-nowrap text-base-content/70 hover:text-base-content hover:bg-base-200" + :class="{ 'text-primary bg-primary/10': isActive(item.path) }" > {{ item.label }} @@ -51,15 +51,3 @@ const isActive = (path: string) => { } - diff --git a/app/components/search/GlobalSearchBar.vue b/app/components/search/GlobalSearchBar.vue index c7442f6..829c633 100644 --- a/app/components/search/GlobalSearchBar.vue +++ b/app/components/search/GlobalSearchBar.vue @@ -6,7 +6,7 @@ class="flex items-center bg-base-100 rounded-full border border-base-300 shadow-sm hover:shadow-md transition-shadow" > -
+
@@ -34,7 +34,7 @@
-
+
@@ -54,7 +54,7 @@
-
+
@@ -208,18 +208,3 @@ onMounted(() => { }) -