Skip to content

Commit

Permalink
Adjust styling and add line height to textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
heimoshuiyu committed Jul 24, 2024
1 parent 370a680 commit fb48723
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/chatbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ export default function ChatBOX(props: {
</span>
)}

<div className="flex justify-between">
<div className="flex justify-between my-1">
<button
className="btn btn-primary disabled:line-through disabled:text-white disabled:bg-neutral m-1 p-1"
disabled={showGenerating || !chatStore.apiKey}
Expand Down Expand Up @@ -1036,6 +1036,9 @@ export default function ChatBOX(props: {
setInputMsg(event.target.value);
}}
className="textarea textarea-bordered textarea-sm grow"
style={{
"lineHeight": "1.39",
}}
placeholder="Type here..."
></textarea>
<button
Expand Down

0 comments on commit fb48723

Please sign in to comment.