Skip to content

Commit

Permalink
(#0) Input 사이즈 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
baegofda committed Nov 29, 2023
1 parent e9a3942 commit bef04e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/core/components/Input/InputPassword/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const InputPassword = forwardRef((
inputId = {id}
label = {"비밀번호"}
rootClassName = {rootClassName}
inputRootClassName = "h-[3.75rem]"
inputComponent = {
<input
ref = {ref}
Expand Down
4 changes: 2 additions & 2 deletions src/core/components/Input/InputSelect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ const InputSelect = forwardRef((
label = {label}
inputId = {id}
rootClassName = {rootClassName}
inputRootClassName = {"py-0"}
inputRootClassName = {"py-0 h-[3.75rem]"}
inputComponent = {
<select
ref = {ref}
className = {clsx(
"text-subhead-02-regular py-4 outline-none cursor-pointer",
"text-subhead-02-regular outline-none cursor-pointer",
!isSelectedValue ? "text-gray-05" : "text-gray-08",
className,
)}
Expand Down
1 change: 1 addition & 0 deletions src/core/components/Input/InputTextField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const InputTextField = forwardRef((
inputId = {id}
label = {label}
rootClassName = {rootClassName}
inputRootClassName = "h-[3.75rem]"
inputComponent = {
<input
ref = {ref}
Expand Down

0 comments on commit bef04e1

Please sign in to comment.