From 7f80f4790d585939b0987c91f2349d9ffcdc1c65 Mon Sep 17 00:00:00 2001 From: Sergey Elpashev Date: Mon, 14 Apr 2025 20:45:46 +0300 Subject: [PATCH] feat: input styles --- src/components/ui/Input.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/Input.module.scss b/src/components/ui/Input.module.scss index 216211f..0e67dc7 100644 --- a/src/components/ui/Input.module.scss +++ b/src/components/ui/Input.module.scss @@ -1,5 +1,5 @@ @reference "../../index.scss"; .input_field { - @apply rounded-md border border-gray-300 p-2 placeholder:transition focus:outline-0 focus:placeholder:opacity-25; + @apply rounded-[23px] border border-gray-300 bg-white p-2 leading-8 placeholder:transition focus:outline-0 focus:placeholder:opacity-25; }