Skip to content

Commit eb69cf5

Browse files
authored
Let chat view be wider (microsoft#185402)
1 parent 8fb5ea0 commit eb69cf5

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
@@ -430,7 +430,7 @@ export class ChatWidget extends Disposable implements IChatWidget {
430430
}
431431

432432
layout(height: number, width: number): void {
433-
width = Math.min(width, 600);
433+
width = Math.min(width, 850);
434434
this.bodyDimension = new dom.Dimension(width, height);
435435

436436
const inputPartHeight = this.inputPart.layout(height, width);

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: 600px;
7+
max-width: 850px;
88
margin: auto;
99
}
1010

0 commit comments

Comments
 (0)