Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const AppLayout: FC = () => {
return (
<>
<Sidebar />
<div className="drawer-content flex flex-col w-full h-screen px-2 bg-base-300">
<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"
Expand Down
4 changes: 2 additions & 2 deletions src/components/ChatInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ export function ChatInput({

return (
<div
className="shrink-0 w-full lg:max-w-[900px] bg-base-100 mx-auto p-2"
className="shrink-0 w-full lg:max-w-[900px] bg-base-100 mx-auto p-1 md:p-2"
aria-label="Chat input"
>
<DropzoneArea
inputId="new-message-file-upload"
extraContext={extraContext}
disabled={isGenerating}
>
<div className="bg-base-200 flex flex-col lg:border-1 lg:border-base-content/30 rounded-lg shadow-md p-2">
<div className="bg-base-200 flex flex-col lg:border-1 lg:border-base-content/30 rounded-lg shadow-sm md:shadow-md p-2">
<textarea
// Default (mobile): Enable vertical resize, overflow auto for scrolling if needed
// Large screens (lg:): Disable manual resize, apply max-height for autosize limit
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FC } from 'react';
export const Footer: FC = () => {
return (
<footer
className="w-full py-1 text-base-content/70 text-xs text-center"
className="w-full max-md:pb-4 py-1 text-base-content/70 text-xs text-center"
tabIndex={0}
aria-description="Statement"
>
Expand Down