chore: increase drawer width (#2)

* chore: increase drawer width

* chore: update
This commit is contained in:
boojack
2023-03-28 23:01:14 +08:00
committed by GitHub
parent 68785b12e1
commit 7e659f4b3b
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ const QueryDrawer = () => {
return (
<Drawer open={queryStore.showDrawer} anchor="right" className="w-full" onClose={close}>
<div className="w-screen sm:w-[640px] max-w-full flex flex-col justify-start items-start p-4">
<div className="w-screen sm:w-[calc(60vw)] lg:w-[calc(50vw)] 2xl:w-[calc(40vw)] max-w-full flex flex-col justify-start items-start p-4">
<button className="btn btn-sm btn-circle" onClick={close}>
<Icon.IoMdClose className="w-5 h-auto" />
</button>

View File

@ -1 +1 @@
export const openAIApiKey = "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";
export const openAIApiKey = process.env.OPENAI_API_KEY;