Skip to content

Commit f5d4c4d

Browse files
jonnybelmontezume
authored andcommitted
fix(multiline-input): expand behaviour not working (#804)
1 parent 7e2904a commit f5d4c4d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/components/inputs/localized-multiline-text-input/translation-input.styles.js

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const getTextareaStyles = (props, theme) => {
2626
props.isCollapsed &&
2727
css`
2828
overflow: hidden;
29-
word-break: break-all;
3029
`,
3130
];
3231
return baseStyles;

src/components/inputs/multiline-text-input/multiline-text-input.styles.js

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const getTextareaStyles = (props, theme) => {
1515
css`
1616
padding: ${vars.spacingXs} ${vars.spacingS};
1717
line-height: ${sizeInputLineHeight};
18+
flex: auto;
1819
word-break: break-all;
1920
white-space: pre-wrap;
2021
resize: vertical;

0 commit comments

Comments
 (0)