Skip to content

Commit 6f3d8d4

Browse files
committed
Add proper styling props
1 parent 020aba7 commit 6f3d8d4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/components/pages/front/FeedbackSection.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@ const FeedbackSection = () => {
8282
<AnimatePresence mode="wait">
8383
{(!response || response.success === false) && <motion.div className="flex flex-col items-center w-full gap-4">
8484
<TextArea
85-
86-
className="w-full p-4 text-lg rounded-lg md:text-xl h-fit"
85+
color="primary"
86+
variant="outlined"
87+
className="w-full p-4 text-lg rounded-lg md:text-xl h-fit min-h-[3.25em] max-h-[50ex]"
8788
placeholder="I would like this feature!"
8889
rows={5}
8990
{...register("text")}

src/components/pages/front/SignupSection.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ const SignupSection = () => {
107107
>
108108
<div className="w-full">
109109
<Input
110+
color="primary"
111+
variant="outlined"
110112
className="w-full p-4 text-lg md:text-xl"
111113
placeholder="your@email.com"
112114
{...register("email")}

0 commit comments

Comments
 (0)