From 3a4a43264e443e8b0c6b119b5c434594026535cd Mon Sep 17 00:00:00 2001
From: Dennis Postma <dennis@directonline.io>
Date: Sun, 21 Jul 2024 19:56:45 +0200
Subject: [PATCH] Fixed spacing in chipsInput component

---
 src/components/forms/ChipsInput.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/forms/ChipsInput.vue b/src/components/forms/ChipsInput.vue
index eed5938..5d9eeb4 100644
--- a/src/components/forms/ChipsInput.vue
+++ b/src/components/forms/ChipsInput.vue
@@ -1,5 +1,5 @@
 <template>
-  <div class="flex flex-wrap items-center input-cyan ">
+  <div class="flex flex-wrap items-center input-cyan gap-1">
     <div v-for="(chip, i) in modelValue" :key="i" class="flex gap-2.5 items-center bg-cyan rounded py-1 px-2">
       <span class="text-xs">{{ chip }}</span>
       <i class="text-xs cursor-pointer text-white font-light font-default not-italic hover:text-gray-50" @click="deleteChip(i)">X</i>