From 2c9f05a7530d4acefcacb2fbac88dd18338e852c Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Thu, 17 Apr 2025 00:32:20 +0330 Subject: [PATCH] responsived --- frontend/components/global/Textarea.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/frontend/components/global/Textarea.vue b/frontend/components/global/Textarea.vue index 8765a51..c209561 100644 --- a/frontend/components/global/Textarea.vue +++ b/frontend/components/global/Textarea.vue @@ -39,9 +39,7 @@ const classes = computed(() => { "input-solid": variant.value === "solid", "input-outlined": variant.value === "outlined", "input-effects": !error.value, - [variant.value === "solid" - ? "input-solid-error" - : "input-outlined-error"]: error.value, + [variant.value === "solid" ? "input-solid-error" : "input-outlined-error"]: error.value, }, ]; }); @@ -53,7 +51,7 @@ const classes = computed(() => { ref="inputRef" v-bind="$attrs" :class="classes" - class="size-full outline-none placeholder-slate-400" + class="size-full outline-none placeholder-slate-400 placeholder:text-xs lg:placeholder:text-sm placeholder:font-normal" :placeholder="placeholder" />