Fix textarea height

This commit is contained in:
Gert Hengeveld 2021-02-23 16:06:12 +01:00
parent 5c20661190
commit 7a1601ae1a

View File

@ -186,7 +186,7 @@ const RawButton = styled(IconButton)(({ theme }) => ({
const RawInput = styled(Form.Textarea)(({ theme }) => ({
flex: 1,
padding: 6,
padding: '7px 6px',
fontFamily: theme.typography.fonts.mono,
fontSize: '12px',
lineHeight: '18px',
@ -195,7 +195,7 @@ const RawInput = styled(Form.Textarea)(({ theme }) => ({
fontSize: '13px',
},
'&:placeholder-shown': {
padding: '6px 10px',
padding: '7px 10px',
},
}));