Skip to content

Commit 3c5521a

Browse files
committed
Fix styles for responsiviness
1 parent 6aa5149 commit 3c5521a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chat/src/components/message-input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export default function MessageInput({
155155
onKeyDown={handleKeyDown as any}
156156
onFocus={() => setControlAreaFocused(true)}
157157
onBlur={() => setControlAreaFocused(false)}
158-
className="cursor-text p-4 h-20 text-muted-foreground flex items-center justify-center w-full outline-none"
158+
className="cursor-text p-4 h-20 text-muted-foreground flex items-center justify-center w-full outline-none text-sm"
159159
>
160160
{controlAreaFocused
161161
? "Press any key to send to terminal (arrows, Ctrl+C, Ctrl+R, etc.)"

chat/src/components/message-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default function MessageList({ messages }: MessageListProps) {
120120
} ${message.id === undefined ? "animate-pulse" : ""}`}
121121
>
122122
<div
123-
className={`whitespace-pre-wrap break-words text-left text-sm ${
123+
className={`whitespace-pre-wrap break-words text-left text-xs md:text-sm leading-relaxed md:leading-normal ${
124124
message.role === "user" ? "" : "font-mono"
125125
}`}
126126
>

0 commit comments

Comments
 (0)