From fe55f6f9e48f3794c32a64cedf28b9b03f452ae7 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Thu, 17 Apr 2025 00:32:14 +0330 Subject: [PATCH] responsived --- frontend/components/global/Input.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/frontend/components/global/Input.vue b/frontend/components/global/Input.vue index 9517ba4..c6710c2 100644 --- a/frontend/components/global/Input.vue +++ b/frontend/components/global/Input.vue @@ -40,22 +40,24 @@ const classes = computed(() => { "input-outlined": variant.value === "outlined", "pointer-events-none opacity-80 text-slate-500": disabled.value, "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, }, ]; });