diff --git a/.changeset/eighty-terms-vanish.md b/.changeset/eighty-terms-vanish.md new file mode 100644 index 00000000..8498581a --- /dev/null +++ b/.changeset/eighty-terms-vanish.md @@ -0,0 +1,5 @@ +--- +'@project44-manifest/react': patch +--- + +fix: added resize behaviour to TextArea diff --git a/packages/react/src/components/TextArea/TextArea.styles.ts b/packages/react/src/components/TextArea/TextArea.styles.ts index 9685349e..354f0cab 100644 --- a/packages/react/src/components/TextArea/TextArea.styles.ts +++ b/packages/react/src/components/TextArea/TextArea.styles.ts @@ -2,6 +2,7 @@ import { css, pxToRem } from '@project44-manifest/react-styles'; export const useStyles = css({ '.manifest-textfield-base__input': { + resize: 'both', minHeight: pxToRem(56), }, });