Skip to content

Commit

Permalink
Merge pull request #140 from lunit-io/DS-107-TextField-hover-radius
Browse files Browse the repository at this point in the history
[DS-107] fix TextField bug
  • Loading branch information
Jiyeon-lunit authored Nov 15, 2023
2 parents 5268d45 + 1a9aaa2 commit bcbe239
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ const commonStyle = ({ lunit_token }: { lunit_token: ColorToken }) => ({
height: "100%",
zIndex: -1,
backgroundColor: lunit_token.core.hover,
borderRadius: "8px",
},
"&.Mui-focused": {
"&:hover::before": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const SingleTextField = forwardRef<HTMLDivElement, SingleTextFieldProps>(
);

const MultiTextField = forwardRef<HTMLDivElement, MultiTextFieldProps>(
({ size = "small", onChange, ...restProps }, ref) => {
({ size = "small", ...restProps }, ref) => {
return (
<BaseTextField {...restProps} ref={ref} textFieldSize={size} multiline />
);
Expand Down

0 comments on commit bcbe239

Please sign in to comment.