Skip to content

Commit

Permalink
chore: cleaning redundant styles
Browse files Browse the repository at this point in the history
  • Loading branch information
hughlv committed Feb 3, 2024
1 parent e810692 commit 7840c84
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ui/src/app/[locale]/chats/(chat-layout)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,13 @@ const LayoutPage = ({ children }: PropsWithChildren) => {
<div className="flex gap-2 text-sm w-full h-full p-2">
<div
className={clsx(
'z-20 gap-1 text-sm shadow-box shadow-gray-600 rounded-xl bg-gray-700/80 text-base-content border border-gray-600',
'z-20 gap-1 text-sm rounded-xl bg-gray-700/80 text-base-content border border-gray-600',
sidebarCollapsed ? 'hidden' : 'md:flex'
)}
>
<ChatListPane />
</div>
<div className="z-10 flex flex-1 shadow-box shadow-gray-600 rounded-xl bg-gray-700/80 text-base-content border border-gray-600">
{children}
</div>
<div className="z-10 flex flex-1">{children}</div>
</div>
</div>
);
Expand Down

0 comments on commit 7840c84

Please sign in to comment.