From 9c5c19ad06846f6c9a0540672a6ddd9471b24736 Mon Sep 17 00:00:00 2001 From: SikindarMirza-p44 Date: Thu, 21 Sep 2023 13:20:46 +0530 Subject: [PATCH 1/2] fix: added resize behaviour to the textarea --- packages/react/src/components/TextArea/TextArea.styles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/src/components/TextArea/TextArea.styles.ts b/packages/react/src/components/TextArea/TextArea.styles.ts index 9685349e0..354f0cabe 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), }, }); From fa58534387e4c6cdbb56f87f4478308d5ddb72d1 Mon Sep 17 00:00:00 2001 From: SikindarMirza-p44 Date: Thu, 21 Sep 2023 13:24:28 +0530 Subject: [PATCH 2/2] chore: added changeset --- .changeset/eighty-terms-vanish.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/eighty-terms-vanish.md diff --git a/.changeset/eighty-terms-vanish.md b/.changeset/eighty-terms-vanish.md new file mode 100644 index 000000000..8498581ab --- /dev/null +++ b/.changeset/eighty-terms-vanish.md @@ -0,0 +1,5 @@ +--- +'@project44-manifest/react': patch +--- + +fix: added resize behaviour to TextArea