From 68a94a03d8160228ea33861275e295d7ddae99da Mon Sep 17 00:00:00 2001 From: Amit Greenberg Date: Mon, 28 Jul 2025 18:16:06 +0300 Subject: [PATCH 1/2] Update Datepicker.tsx --- src/components/Datepicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Datepicker.tsx b/src/components/Datepicker.tsx index 5f923306..75430c1f 100644 --- a/src/components/Datepicker.tsx +++ b/src/components/Datepicker.tsx @@ -110,7 +110,7 @@ const Datepicker = (props: DatepickerType) => { if (arrow && div && div.classList.contains("block")) { div.classList.remove("block"); div.classList.remove("translate-y-0"); - div.classList.remove("opacity-1"); + div.classList.remove("opacity-100"); div.classList.add("translate-y-4"); div.classList.add("opacity-0"); setTimeout(() => { From 1c2b0a5bd8a3dea1e6ed795618d447e69ddab0af Mon Sep 17 00:00:00 2001 From: Amit Greenberg Date: Mon, 28 Jul 2025 18:17:09 +0300 Subject: [PATCH 2/2] Update Input.tsx --- src/components/Input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Input.tsx b/src/components/Input.tsx index f34f1b0f..7c3c4cc5 100644 --- a/src/components/Input.tsx +++ b/src/components/Input.tsx @@ -248,7 +248,7 @@ const Input = () => { div.classList.remove("translate-y-4"); div.classList.remove("opacity-0"); div.classList.add("translate-y-0"); - div.classList.add("opacity-1"); + div.classList.add("opacity-100"); }, 1); } }