Show search bar below the navbar on the search results view on small screens #99

Merged
jakob.scheid merged 11 commits from feature/place-search-bar-below-navbar into main 2026-06-01 18:49:58 +02:00
Showing only changes of commit 873bd74804 - Show all commits
@@ -16,10 +16,15 @@ limitations under the License.
<script setup> <script setup>
import Searchbar from '@/features/search/components/Searchbar.vue'; import Searchbar from '@/features/search/components/Searchbar.vue';
import { useRoute } from 'vue-router';
const route = useRoute();
</script> </script>
<template> <template>
<Searchbar <Searchbar
v-if="route.name === 'searchResults'"
auto-submit auto-submit
/> />
</template> </template>