We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb826d7 commit 124d781Copy full SHA for 124d781
packages/jupyter-chat/src/components/input/chat-input.tsx
@@ -258,6 +258,7 @@ export function ChatInput(props: ChatInput.IProps): JSX.Element {
258
variant="standard"
259
className={INPUT_TEXTFIELD_CLASS}
260
multiline
261
+ maxRows={10}
262
onKeyDown={handleKeyDown}
263
placeholder="Type a chat message, @ to mention..."
264
inputRef={inputRef}
@@ -269,6 +270,7 @@ export function ChatInput(props: ChatInput.IProps): JSX.Element {
269
270
sx={{
271
padding: 1.5,
272
margin: 0,
273
+ boxSizing: 'border-box',
274
backgroundColor: 'var(--jp-layout-color0)',
275
transition: 'background-color 0.2s ease',
276
'& .MuiInputBase-root': {
0 commit comments