Skip to content

Commit

Permalink
adjusted roundedness of corners
Browse files Browse the repository at this point in the history
  • Loading branch information
krishokr committed Aug 30, 2024
1 parent 08ae3d1 commit 22708db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/app/[[...slug]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function ConversationPage({
if (!isValidParam(params.slug)) return notFound();

return (
<div className="border-solid border-2 w-full gap-4 flex flex-col">
<div className="border-solid border-2 w-full gap-4 flex flex-col rounded">
<ChatPanel />
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function BuildPanel() {
};

return (
<div className="flex items-center border-solid border-2">
<div className="flex items-center border-solid border-2 rounded">
<div className=" p-1">
{isOpen ? (
<ChevronRight
Expand Down

0 comments on commit 22708db

Please sign in to comment.