Skip to content

Commit 96afbcd

Browse files
committed
add 100px to max width for chat input
1 parent 6bffcf0 commit 96afbcd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/workbench/contrib/chat/browser/chatWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1792,7 +1792,7 @@ export class ChatWidget extends Disposable implements IChatWidget {
17921792
}
17931793

17941794
layout(height: number, width: number): void {
1795-
width = Math.min(width, 850);
1795+
width = Math.min(width, 950);
17961796
this.bodyDimension = new dom.Dimension(width, height);
17971797

17981798
const layoutHeight = this._dynamicMessageLayoutData?.enabled ? this._dynamicMessageLayoutData.maxHeight : height;

src/vs/workbench/contrib/chat/browser/media/chat.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
.interactive-session {
7-
max-width: 850px;
7+
max-width: 950px;
88
margin: auto;
99
position: relative; /* For chat dnd */
1010
}

0 commit comments

Comments
 (0)