Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
height: 100%;
min-height: 0;
min-width: 0;
max-width: 950px;
margin: auto;
Comment on lines +18 to +19
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change applies max-width/centering to .chat-controls-container, which constrains the entire chat pane (including the widget) rather than just the title container described in the PR. In side-by-side sessions layout (.chat-viewpane.has-sessions-control.sessions-control-orientation-sidebyside switches to flex-direction: row), this will cap the chat area to 950px and center it, likely leaving unused space and misaligning with the sessions column. Consider keeping .chat-controls-container full-width and instead applying the max-width + horizontal centering to the title container (and/or an inner wrapper that contains the title + .interactive-session).

Copilot uses AI. Check for mistakes.

.interactive-session {

Expand Down
Loading