Skip to content

Commit

Permalink
correct height for textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthkp committed Mar 31, 2020
1 parent 394c554 commit ee060f9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ const DialogAddComment: React.FC<{
<DragHandle onPan={onDragHandlerPan}>
<Stack
justify="space-between"
align="center"
marginY={4}
marginLeft={4}
marginRight={2}
Expand All @@ -212,6 +211,7 @@ const DialogAddComment: React.FC<{
border: 'none',
paddingLeft: 4,
})}
style={{ minHeight: 32 }}
value={value}
onChange={e => setValue(e.target.value)}
placeholder="Add comment..."
Expand Down Expand Up @@ -418,8 +418,9 @@ const AddReply = ({ comment, ...props }) => {
border: 'none',
borderTop: '1px solid',
borderColor: 'sideBar.border',
paddingX: 4,
padding: 4,
})}
style={{ minHeight: 54 }}
value={value}
onChange={e => setValue(e.target.value)}
placeholder="Reply..."
Expand Down

0 comments on commit ee060f9

Please sign in to comment.