Skip to content

Commit

Permalink
add margin to top
Browse files Browse the repository at this point in the history
  • Loading branch information
chuyouchia committed Apr 30, 2024
1 parent e4c9a45 commit 872a776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ const ChatWithLLM: React.FC<ChatWithLLMProps> = ({
<div className="flex items-center justify-center w-full h-full">
<div className="flex flex-col w-full h-full mx-auto overflow-hidden bg-neutral-800 border-l-[0.001px] border-b-0 border-t-0 border-r-0 border-neutral-700 border-solid">
<div className="flex flex-col overflow-auto p-3 pt-0 bg-transparent h-full">
<div className="space-y-2 ml-4 mr-4 flex-grow">
<div className="space-y-2 mt-2 ml-4 mr-4 flex-grow">
{currentChatHistory?.displayableChatHistory
.filter((msg) => msg.role !== "system")
.map((message, index) => (
Expand Down

0 comments on commit 872a776

Please sign in to comment.