diff --git a/app.vue b/app.vue index 4e512ed..4d4a7f4 100644 --- a/app.vue +++ b/app.vue @@ -17,6 +17,13 @@ useHead({ htmlAttrs: { lang: 'en', }, + meta: [ + { + name: 'viewport', + content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0', + tagPosition: 'head', + }, + ], link: [ { rel: 'icon', diff --git a/components/dashboard/Filters.vue b/components/dashboard/Filters.vue index 400aea8..b6526c9 100644 --- a/components/dashboard/Filters.vue +++ b/components/dashboard/Filters.vue @@ -48,9 +48,9 @@ onBeforeMount(() => { variant="outline" role="combobox" :aria-expanded="isOpen" - class="flex justify-between w-full sm:w-48" + class="flex justify-between px-3 w-full sm:w-48" > -
+
{{ selectedLinks.length ? selectedLinks.join(', ') : 'Filter Links...' }}