Skip to content

Commit

Permalink
Round all input and text areas
Browse files Browse the repository at this point in the history
  • Loading branch information
bombies committed Nov 2, 2023
1 parent 5dd9fd1 commit a75d711
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(site)/components/inputs/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Select<T>({
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: {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(site)/components/inputs/TextArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const TextArea: FC<Props> = ({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
Expand Down

0 comments on commit a75d711

Please sign in to comment.