mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-12-13 19:31:24 +00:00
Fix the font size and alignment of all the chat options of the sidebar based on issue #586
Fix the font size and alignment of all the chat options of the sidebar based on issue #586
This commit is contained in:
@@ -229,7 +229,7 @@ export default function Navigation({ navOpen, setNavOpen }: NavigationProps) {
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<img src={Message} className="ml-4 w-5"></img>
|
<img src={Message} className="ml-4 w-5"></img>
|
||||||
<p className="my-auto text-eerie-black">New Chat</p>
|
<p className="my-auto text-sm text-eerie-black">New Chat</p>
|
||||||
</NavLink>
|
</NavLink>
|
||||||
<div className="conversations-container max-h-[25rem] overflow-y-auto">
|
<div className="conversations-container max-h-[25rem] overflow-y-auto">
|
||||||
{conversations
|
{conversations
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ export default function ConversationTile({
|
|||||||
onClick={() => {
|
onClick={() => {
|
||||||
selectConversation(conversation.id);
|
selectConversation(conversation.id);
|
||||||
}}
|
}}
|
||||||
className={`my-auto mx-4 mt-4 flex h-12 cursor-pointer items-center justify-between gap-4 rounded-3xl hover:bg-gray-100 ${
|
className={`my-auto mx-4 mt-4 flex h-9 cursor-pointer items-center justify-between gap-4 rounded-3xl hover:bg-gray-100 ${
|
||||||
conversationId === conversation.id ? 'bg-gray-100' : ''
|
conversationId === conversation.id ? 'bg-gray-100' : ''
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
@@ -77,7 +77,7 @@ export default function ConversationTile({
|
|||||||
conversationId === conversation.id ? 'w-[75%]' : 'w-[95%]'
|
conversationId === conversation.id ? 'w-[75%]' : 'w-[95%]'
|
||||||
} gap-4`}
|
} gap-4`}
|
||||||
>
|
>
|
||||||
<img src={Message} className="ml-2 w-5"></img>
|
<img src={Message} className="ml-4 w-5"></img>
|
||||||
{isEdit ? (
|
{isEdit ? (
|
||||||
<input
|
<input
|
||||||
autoFocus
|
autoFocus
|
||||||
|
|||||||
Reference in New Issue
Block a user