From a75d711125325a29920ff262c80e76fd185fad21 Mon Sep 17 00:00:00 2001 From: bombies Date: Thu, 2 Nov 2023 17:43:15 -0500 Subject: [PATCH] Round all input and text areas --- src/app/(site)/components/inputs/Select.tsx | 2 +- src/app/(site)/components/inputs/TextArea.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(site)/components/inputs/Select.tsx b/src/app/(site)/components/inputs/Select.tsx index be80075..48ab113 100644 --- a/src/app/(site)/components/inputs/Select.tsx +++ b/src/app/(site)/components/inputs/Select.tsx @@ -23,7 +23,7 @@ export default function Select({ color: "primary", size: "lg", classNames: { - trigger: clsx("h-fit py-6 bg-[#9E23FF1A]/10 border-1 border-[#3E0070] hover:!bg-[#9E23FF1A]/20 focus-within:!bg-[#9E23FF1A]/20", classNames?.trigger), + trigger: clsx("h-fit py-6 rounded-3xl bg-[#9E23FF1A]/10 border-1 border-[#3E0070] hover:!bg-[#9E23FF1A]/20 focus-within:!bg-[#9E23FF1A]/20", classNames?.trigger), label: clsx("text-lg text-[#EAE0FF]", classNames?.label), }, listboxProps: { diff --git a/src/app/(site)/components/inputs/TextArea.tsx b/src/app/(site)/components/inputs/TextArea.tsx index 98d6e4f..8970fb7 100644 --- a/src/app/(site)/components/inputs/TextArea.tsx +++ b/src/app/(site)/components/inputs/TextArea.tsx @@ -14,7 +14,7 @@ const TextArea: FC = ({register, id, classNames, ...props}) => { color: "primary", size: "lg", classNames: { - inputWrapper: "h-fit py-2 bg-[#9E23FF1A]/10 border-1 border-[#3E0070] hover:!bg-[#9E23FF1A]/20 focus-within:!bg-[#9E23FF1A]/20", + inputWrapper: "h-fit py-2 bg-[#9E23FF1A]/10 border-1 border-[#3E0070] hover:!bg-[#9E23FF1A]/20 focus-within:!bg-[#9E23FF1A]/20 rounded-3xl", input: "text-[#EAE0FF]", label: "text-lg text-[#EAE0FF]", ...classNames