1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-19 17:52:45 +02:00

refactor: add minHeight

This commit is contained in:
Shreyans Gandhi 2023-08-16 22:16:09 -07:00
parent a19b46b3e6
commit bf86fbc6eb

View File

@ -86,9 +86,10 @@ const StyledFieldColumn = styled('div')(({ theme }) => ({
}, },
})); }));
const StyledInput = styled(Input)(() => ({ const StyledInput = styled(Input)(({theme}) => ({
width: '100%', width: '100%',
'& textarea': { '& textarea': {
minHeight: theme.spacing(3),
resize: 'vertical', resize: 'vertical',
}, },
})); }));