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>