Unverified Commit 8c5ba63f authored by Juskinbo's avatar Juskinbo Committed by GitHub

fix: overflow of dialog-content-container (#1277)

* fix: overflow of dialog-content-container

* fix: overflow of dialog-content-container
parent f7cd0398
...@@ -79,7 +79,7 @@ const AskAIDialog: React.FC<Props> = (props: Props) => { ...@@ -79,7 +79,7 @@ const AskAIDialog: React.FC<Props> = (props: Props) => {
<Icon.X /> <Icon.X />
</button> </button>
</div> </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} /> <Textarea className="w-full" placeholder="Ask anything…" onKeyDown={handleQuestionTextareaKeyDown} />
{fetchingState.isLoading && ( {fetchingState.isLoading && (
<p className="w-full py-2 mt-4 flex flex-row justify-center items-center"> <p className="w-full py-2 mt-4 flex flex-row justify-center items-center">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment