mirror of
https://github.com/usememos/memos.git
synced 2025-10-13 07:49:00 +08:00
fix: overflow of dialog-content-container (#1277)
* fix: overflow of dialog-content-container * fix: overflow of dialog-content-container
This commit is contained in:
parent
f7cd039819
commit
8c5ba63f8c
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ const AskAIDialog: React.FC<Props> = (props: Props) => {
|
|||
<Icon.X />
|
||||
</button>
|
||||
</div>
|
||||
<div className="dialog-content-container !w-112">
|
||||
<div className="dialog-content-container !w-112 max-w-full">
|
||||
<Textarea className="w-full" placeholder="Ask anything…" onKeyDown={handleQuestionTextareaKeyDown} />
|
||||
{fetchingState.isLoading && (
|
||||
<p className="w-full py-2 mt-4 flex flex-row justify-center items-center">
|
||||
|
|
Loading…
Add table
Reference in a new issue