From 229c15dffdc06160fc55a5310dc0c4925d083f73 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ole=20Volds=C3=A6ter?= <ole.voldsater@uib.no>
Date: Fri, 12 Mar 2021 15:43:23 +0100
Subject: [PATCH] =?UTF-8?q?re=20meta#297=20bredde=20p=C3=A5=20s=C3=B8kefel?=
 =?UTF-8?q?t?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/components/Autocomplete.vue | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/components/Autocomplete.vue b/src/components/Autocomplete.vue
index 3455b386..7d09b792 100644
--- a/src/components/Autocomplete.vue
+++ b/src/components/Autocomplete.vue
@@ -1,5 +1,5 @@
 <template>
-  <div class="autocomplete-container">
+  <div class="autocomplete-container" :class="$vuetify.breakpoint.name">
     <v-autocomplete
         v-model="select"
         :loading="loading"
@@ -106,7 +106,15 @@
   }
 
   .autocomplete-container {
-    max-width: 500px;
+    max-width: 520px;
     padding-left: 3px;
   }
+
+  .autocomplete-container.sm {
+    max-width: 320px;
+  }
+
+  .autocomplete-container.xs {
+    max-width: 220px;
+  }
 </style>
-- 
GitLab