diff --git a/frontend/components/global/Input.vue b/frontend/components/global/Input.vue index 9054835..7c2871c 100644 --- a/frontend/components/global/Input.vue +++ b/frontend/components/global/Input.vue @@ -28,7 +28,7 @@ const inputRef = ref(null); const classes = computed(() => { return [ - "flex items-center cursor-text transition-all border-[1.5px] gap-3 typo-label-md px-4 py-3 rounded-100", + "flex items-center justify-between cursor-text transition-all border-[1.5px] gap-3 typo-label-md px-4 py-3 rounded-100", { "input-solid": variant.value === "solid", "input-outlined": variant.value === "outlined", @@ -56,7 +56,7 @@ const onInput = (e: any) => { :value="modelValue" @input="onInput" ref="inputRef" - class="outline-none w-max" + class="outline-none flex-1" :placeholder="placeholder" />