diff --git a/components/Search.vue b/components/Search.vue
index e268cfde..db51b8b0 100644
--- a/components/Search.vue
+++ b/components/Search.vue
@@ -1,43 +1,48 @@
-v-container.pt-0.pt-md-2
- v-switch.mt-0(
- v-if='settings.allow_recurrent_event'
- v-model='showRecurrent'
- inset color='primary'
- hide-details
- :label="$t('event.show_recurrent')")
- v-autocomplete(
- v-model='meta'
- :label='$t("common.search")'
- :filter='filter'
- cache-items
- hide-details
- color='primary'
- hide-selected
- small-chips
- :items='items'
- @change='change'
- hide-no-data
- @input.native='search'
- item-text='label'
- return-object
- chips
- multiple)
- template(v-slot:selection="{ attrs, item }")
- v-chip(v-bind="attrs"
- small
- close
- @click:close='remove(item)'
- :close-icon='mdiCloseCircle')
- v-avatar(left)
- v-icon(small v-text="item.type === 'place' ? mdiMapMarker : mdiTag")
- span {{ item.label }}
- template(v-slot:item='{ item }')
- v-list-item-avatar
- v-icon(v-text="item.type === 'place' ? mdiMapMarker : mdiTag")
- v-list-item-content
- v-list-item-title(v-text='item.label')
- v-list-item-subtitle(v-if='item.type ==="place"' v-text='item.address')
+v-row
+ v-col(cols=12)
+ v-switch(
+ v-if='settings.allow_recurrent_event'
+ v-model='show_recurrent'
+ @change='change'
+ inset color='primary'
+ hide-details
+ :label="$t('event.show_recurrent')")
+ v-col.mb-4(cols=12)
+ v-autocomplete.p-0(
+ v-model='meta'
+ :label='$t("common.search")'
+ :filter='filter'
+ cache-items
+ hide-details
+ color='primary'
+ hide-selected
+ small-chips
+ @focus='search'
+ :menu-props="{ maxWidth: '400' }"
+ :items='items'
+ @change='change'
+ hide-no-data
+ @input.native='search'
+ item-text='label'
+ return-object
+ chips
+ multiple)
+ template(v-slot:selection="{ attrs, item }")
+ v-chip(v-bind="attrs"
+ small
+ close
+ @click:close='remove(item)'
+ :close-icon='mdiCloseCircle')
+ v-avatar(left)
+ v-icon(small v-text="item.type === 'place' ? mdiMapMarker : mdiTag")
+ span {{ item.label }}
+ template(v-slot:item='{ item }')
+ v-list-item-avatar
+ v-icon(v-text="item.type === 'place' ? mdiMapMarker : mdiTag")
+ v-list-item-content
+ v-list-item-title(v-text='item.label')
+ v-list-item-subtitle(v-if='item.type ==="place"' v-text='item.address')