1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00

fix: multiline textarea resizing for json input

This commit is contained in:
Shreyans Gandhi 2023-08-09 23:04:36 -07:00
parent fe0c7087de
commit a19b46b3e6

View File

@ -88,6 +88,9 @@ const StyledFieldColumn = styled('div')(({ theme }) => ({
const StyledInput = styled(Input)(() => ({
width: '100%',
'& textarea': {
resize: 'vertical',
},
}));
const StyledPercentageContainer = styled('div')(({ theme }) => ({