Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style(chat): update styling for main content and chat input
- Add border and inset shadow to main content area
- Remove border from chat input on large screens and adjust shadow
  • Loading branch information
olegshulyakov committed Oct 15, 2025
commit 1af9dc64c30a9644d45c994f339c4b313f11c47c
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const AppLayout: FC = () => {
<div className="drawer-content flex flex-col w-full h-screen px-1 md:px-2 bg-base-300">
<Header />
<main
className="grow flex flex-col overflow-auto bg-base-100 rounded-xl"
className="grow flex flex-col overflow-auto bg-base-100 rounded-xl border-1 border-base-content/20 border-input inset-shadow-sm"
id="main-scroll"
>
<Outlet />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Chat/components/ChatInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const ChatInput = memo(
disabled={isPending}
>
<div
className="bg-base-200 flex flex-col lg:border-1 lg:border-base-content/30 outline-0 focus-within:outline-1 rounded-lg shadow-sm md:shadow-md p-2"
className="bg-base-200 flex flex-col outline-0 focus-within:outline-1 rounded-lg shadow-sm xl:shadow-md p-2"
tabIndex={0}
>
<AutoSizingTextArea
Expand Down