Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🕦 Add form field hint #190

Merged
merged 6 commits into from
Mar 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update form hint styles
  • Loading branch information
ClumsyVlad committed Mar 20, 2024
commit 98578aa55926d79a65cf8e6999aa04f5f5d76f21
5 changes: 3 additions & 2 deletions src/components/ui/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ const FormHint = ({
<div
className={cn(
"relative flex items-center",
leftHint && "pl-10",
rightHint && "pr-10",
"[&_svg]:h-4 [&_svg]:w-4",
leftHint && "[&>input]:pl-10",
rightHint && "[&>input]:pr-10",
className,
)}
>
Expand Down