Skip to content

Commit

Permalink
Adjust margins/paddings for input, add to button.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbicus committed Nov 15, 2024
1 parent 4f792ae commit f427e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/ui/dropdown-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ export function DropdownField<T extends FieldValues, U = string>({
<span className="label-text">{label}</span>
</div>
<div className={clsx('dropdown', dropdownClassName)} key="dropdown">
<div className="input input-bordered w-full flex items-center">
<div className="input input-bordered w-full flex items-center px-0">
<div
tabIndex={0}
role="button"
className="btn btn-ghost w-full text-right px-0 justify-start"
className="btn btn-ghost w-full text-right justify-start"
>
{currentOption ? currentOption.label : ''}
</div>
Expand Down

0 comments on commit f427e53

Please sign in to comment.