Skip to content

Commit

Permalink
✨ Fix width issue
Browse files Browse the repository at this point in the history
  • Loading branch information
asim-shrestha committed Jun 16, 2023
1 parent 73d68b4 commit f9fd81c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion next/src/components/console/ChatWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const ChatWindow = ({
return (
<div
className={clsx(
"border-translucent h-full flex-1 flex-col overflow-auto rounded-2xl border-2 border-white/20 bg-zinc-900 text-white shadow-2xl drop-shadow-lg transition-all duration-500",
"border-translucent h-full max-w-[inherit] flex-1 flex-col overflow-auto rounded-2xl border-2 border-white/20 bg-zinc-900 text-white shadow-2xl drop-shadow-lg transition-all duration-500",
visibleOnMobile ? "flex" : "hidden xl:flex"
)}
>
Expand Down
2 changes: 1 addition & 1 deletion next/src/pages/agent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const AgentPage: NextPage = () => {
<SidebarLayout>
<div
id="content"
className="flex h-screen w-full flex-col items-center justify-center gap-3 px-3 pt-7 md:px-10"
className="flex h-screen max-w-full flex-col items-center justify-center gap-3 px-3 pt-7 md:px-10"
>
<ChatWindow
messages={messages.filter((m) => m.type !== "thinking")}
Expand Down

1 comment on commit f9fd81c

@vercel
Copy link

@vercel vercel bot commented on f9fd81c Jun 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs – ./docs

docs-git-main-reworkd.vercel.app
docs-reworkd.vercel.app
docs.reworkd.ai

Please sign in to comment.