Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions extensions/vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion extensions/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "continue",
"icon": "media/icon.png",
"author": "Continue Dev, Inc",
"version": "2.2.1",
"version": "2.2.2",
"repository": {
"type": "git",
"url": "https://github.com/continuedev/continue"
Expand Down
6 changes: 3 additions & 3 deletions gui/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const LayoutTopDiv = styled(CustomScrollbarDiv)`
const GridDiv = styled.div`
display: grid;
grid-template-rows: 1fr auto;
height: 100vh;
overflow-x: visible;
height: 100%;
Comment thread
coderabbitai[bot] marked this conversation as resolved.
overflow-x: hidden;
`;

const Layout = () => {
Expand Down Expand Up @@ -202,7 +202,7 @@ const Layout = () => {
<div
style={{
scrollbarGutter: "stable both-edges",
minHeight: "100%",
height: "100%",
display: "grid",
gridTemplateRows: "1fr auto",
}}
Expand Down
2 changes: 1 addition & 1 deletion gui/src/components/StyledMarkdownPreview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const StyledMarkdown = styled.div<{
background-color: ${vscEditorBackground};
border-radius: ${defaultBorderRadius};

max-width: calc(100vw - 24px);
max-width: 100%;
overflow-x: scroll;
overflow-y: hidden;

Expand Down
2 changes: 1 addition & 1 deletion gui/src/components/UnifiedTerminal/UnifiedTerminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const StyledTerminalContainer = styled.div<{
const TerminalContent = styled.div`
pre {
white-space: pre-wrap;
max-width: calc(100vw - 24px);
max-width: 100%;
overflow-x: scroll;
overflow-y: hidden;
padding: 8px;
Expand Down
4 changes: 2 additions & 2 deletions gui/src/pages/gui/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { Chat } from "./Chat";

export default function GUI() {
return (
<div className="flex min-h-0 w-screen flex-row overflow-x-hidden">
<div className="flex min-h-0 w-full flex-row overflow-x-hidden">
<aside className="4xl:flex border-vsc-input-border no-scrollbar hidden min-h-0 w-96 overflow-y-auto border-0 border-r border-solid">
<History />
</aside>
<main className="no-scrollbar flex min-h-0 flex-1 flex-col">
<main className="no-scrollbar flex min-h-0 min-w-0 flex-1 flex-col">
<Chat />
</main>
</div>
Expand Down
Loading