Skip to content

Commit 768395f

Browse files
committed
🤖 Simplify chat controls layout - remove justify-between
Use plain flex with gap-3 for natural, consistent spacing. No layout magic needed.
1 parent 598baec commit 768395f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ChatInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ export const ChatInput: React.FC<ChatInputProps> = ({
747747
Editing message ({formatKeybind(KEYBINDS.CANCEL_EDIT)} to cancel)
748748
</div>
749749
)}
750-
<div className="flex flex-wrap items-center justify-between gap-3">
750+
<div className="flex flex-wrap items-center gap-3">
751751
{/* Model Selector - always visible */}
752752
<div
753753
className="flex items-center"

0 commit comments

Comments
 (0)