Skip to content

Commit bca5f86

Browse files
Merge pull request #4873 from continuedev/dallin/chat-flex-dir
Fix wide-screen flex
2 parents 710f610 + a92f31c commit bca5f86

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gui/src/components/mainInput/Lump/BlockSettingsTopToolbar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function BlockSettingsToolbarIcon(props: BlockSettingsToolbarIcon) {
5757
className={`relative flex select-none items-center rounded-full px-1 transition-all duration-200 focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500/50 ${props.className || ""}`}
5858
>
5959
<props.icon
60-
className="h-3 w-3 hover:brightness-125"
60+
className="h-[13px] w-[13px] flex-shrink-0 hover:brightness-125"
6161
style={{
6262
color: props.isSelected ? vscBadgeForeground : undefined,
6363
}}

gui/src/pages/gui/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { Chat } from "./Chat";
33

44
export default function GUI() {
55
return (
6-
<div className="flex w-screen flex-col overflow-hidden">
7-
<aside className="4xl:block border-vsc-input-border no-scrollbar hidden w-96 overflow-y-auto border-0 border-r border-solid">
6+
<div className="flex w-screen flex-row overflow-hidden">
7+
<aside className="4xl:flex border-vsc-input-border no-scrollbar hidden w-96 overflow-y-auto border-0 border-r border-solid">
88
<History />
99
</aside>
1010
<main className="no-scrollbar flex flex-1 flex-col overflow-y-auto">

0 commit comments

Comments
 (0)