This commit is contained in:
marzban-dev
2025-01-19 19:52:48 +03:30
parent 6a48cb5a3d
commit 95a91cbe48
+2 -2
View File
@@ -28,7 +28,7 @@ const inputRef = ref<HTMLInputElement | null>(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"
/>