Skip to content

Commit 580d122

Browse files
authored
Merge pull request microsoft#256670 from microsoft/isidorn/tricky-flamingo
add 100px to max width for chat input
2 parents a88f68b + 96afbcd commit 580d122

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
@@ -1814,7 +1814,7 @@ export class ChatWidget extends Disposable implements IChatWidget {
18141814
}
18151815

18161816
layout(height: number, width: number): void {
1817-
width = Math.min(width, 850);
1817+
width = Math.min(width, 950);
18181818
this.bodyDimension = new dom.Dimension(width, height);
18191819

18201820
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)