Skip to content

Commit

Permalink
Add min-height to user message container
Browse files Browse the repository at this point in the history
  • Loading branch information
miurla committed May 11, 2024
1 parent 07d0c0b commit b11e180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/user-message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const UserMessage: React.FC<UserMessageProps> = ({
showShare = false
}) => {
return (
<div className="flex items-center w-full space-x-1 mt-2">
<div className="flex items-center w-full space-x-1 mt-2 min-h-10">
<div className="text-xl flex-1">{message}</div>
{showShare && chatId && <ChatShare chatId={chatId} />}
</div>
Expand Down

0 comments on commit b11e180

Please sign in to comment.