Skip to content

Commit 7b777bf

Browse files
committed
🤖 Use justify-between for controls to fill available width
Controls now spread across full width with even spacing between them. Replaces fixed gap-3 with dynamic justify-between spacing.
1 parent 27fece7 commit 7b777bf

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 gap-3">
750+
<div className="flex flex-wrap items-center justify-between">
751751
{/* Model Selector - always visible */}
752752
<div
753753
className="flex items-center"

0 commit comments

Comments
 (0)