Skip to content

Commit ee060f9

Browse files
committed
correct height for textarea
1 parent 394c554 commit ee060f9

File tree

1 file changed

+3
-2
lines changed
  • packages/app/src/app/pages/Sandbox/Editor/Workspace/screens/Comments/Dialog

1 file changed

+3
-2
lines changed

packages/app/src/app/pages/Sandbox/Editor/Workspace/screens/Comments/Dialog/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ const DialogAddComment: React.FC<{
185185
<DragHandle onPan={onDragHandlerPan}>
186186
<Stack
187187
justify="space-between"
188-
align="center"
189188
marginY={4}
190189
marginLeft={4}
191190
marginRight={2}
@@ -212,6 +211,7 @@ const DialogAddComment: React.FC<{
212211
border: 'none',
213212
paddingLeft: 4,
214213
})}
214+
style={{ minHeight: 32 }}
215215
value={value}
216216
onChange={e => setValue(e.target.value)}
217217
placeholder="Add comment..."
@@ -418,8 +418,9 @@ const AddReply = ({ comment, ...props }) => {
418418
border: 'none',
419419
borderTop: '1px solid',
420420
borderColor: 'sideBar.border',
421-
paddingX: 4,
421+
padding: 4,
422422
})}
423+
style={{ minHeight: 54 }}
423424
value={value}
424425
onChange={e => setValue(e.target.value)}
425426
placeholder="Reply..."

0 commit comments

Comments
 (0)