From 95a91cbe4871c165bd1c3550a155d6a219da75e6 Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Sun, 19 Jan 2025 19:52:48 +0330 Subject: [PATCH] Updated --- frontend/components/global/Input.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" />